Permalink
Checking mergeability…
Don’t worry, you can still create the pull request.
Comparing changes
Open a pull request
7
contributors
Showing
with
122 additions
and 23,374 deletions.
- +0 −25 .travis.yml
- +25 −0 Makefile
- +31 −76 README.md
- +0 −53 ROADMAP.md
- +0 −31 bin/_commander.js
- +0 −21 bin/sails-configure.js
- +0 −112 bin/sails-console.js
- +0 −55 bin/sails-debug.js
- +0 −106 bin/sails-generate.js
- +0 −73 bin/sails-lift.js
- +0 −57 bin/sails-new.js
- +0 −63 bin/sails-www.js
- +0 −148 bin/sails.js
- +8 −0 circle.yml
- +0 −41 errors/fatal.js
- +1 −3 lib/app/README.md
- +0 −30 lib/app/Sails.js
- +1 −17 lib/app/configuration/defaultHooks.js
- +0 −2 lib/app/configuration/index.js
- +0 −16 lib/app/getBaseurl.js
- +3 −12 lib/app/lift.js
- +2 −5 lib/app/load.js
- +1 −23 lib/app/lower.js
- +0 −67 lib/app/private/bootstrap.js
- +7 −31 lib/app/private/initialize.js
- +0 −176 lib/app/request.js
- +0 −30 lib/hooks/blueprints/README.md
- +0 −320 lib/hooks/blueprints/actionUtil.js
- +0 −189 lib/hooks/blueprints/actions/add.js
- +0 −53 lib/hooks/blueprints/actions/create.js
- +0 −49 lib/hooks/blueprints/actions/destroy.js
- +0 −66 lib/hooks/blueprints/actions/find.js
- +0 −43 lib/hooks/blueprints/actions/findOne.js
- +0 −65 lib/hooks/blueprints/actions/populate.js
- +0 −70 lib/hooks/blueprints/actions/remove.js
- +0 −90 lib/hooks/blueprints/actions/update.js
- +0 −68 lib/hooks/blueprints/coercePK.js
- +0 −412 lib/hooks/blueprints/index.js
- +0 −61 lib/hooks/blueprints/jsonp.js
- +0 −139 lib/hooks/blueprints/onRoute.js
- +0 −26 lib/hooks/controllers/README.md
- +0 −123 lib/hooks/controllers/index.js
- +0 −246 lib/hooks/controllers/onRoute.js
- +0 −215 lib/hooks/cors/index.js
- +0 −122 lib/hooks/csrf/index.js
- +0 −204 lib/hooks/grunt/index.js
- +0 −207 lib/hooks/http/index.js
- +0 −112 lib/hooks/http/initialize.js
- +0 −191 lib/hooks/http/middleware/defaults.js
- +0 −30 lib/hooks/http/middleware/load.js
- +0 −120 lib/hooks/http/start.js
- +0 −48 lib/hooks/http/view.js
- +0 −95 lib/hooks/i18n/index.js
- +0 −16 lib/hooks/index.js
- +1 −165 lib/hooks/moduleloader/index.js
- +3 −75 lib/hooks/orm/index.js
- +0 −28 lib/hooks/policies/README.md
- +0 −343 lib/hooks/policies/index.js
- +0 −38 lib/hooks/pubsub/README.md
- +0 −11 lib/hooks/pubsub/drink.js
- +0 −1,461 lib/hooks/pubsub/index.js
- +0 −11 lib/hooks/pubsub/spit.js
- +0 −13 lib/hooks/pubsub/squirt.js
- +0 −47 lib/hooks/request/README.md
- +0 −116 lib/hooks/request/index.js
- +0 −50 lib/hooks/request/locals.js
- +0 −48 lib/hooks/request/metadata.js
- +0 −68 lib/hooks/request/params.all.js
- +0 −87 lib/hooks/request/qualifiers.js
- +0 −110 lib/hooks/request/validate.js
- +0 −64 lib/hooks/responses/defaults/badRequest.js
- +0 −77 lib/hooks/responses/defaults/forbidden.js
- +0 −42 lib/hooks/responses/defaults/negotiate.js
- +0 −82 lib/hooks/responses/defaults/notFound.js
- +0 −48 lib/hooks/responses/defaults/ok.js
- +0 −77 lib/hooks/responses/defaults/serverError.js
- +0 −229 lib/hooks/responses/index.js
- +0 −39 lib/hooks/responses/onRoute.js
- +0 −15 lib/hooks/session/README.md
- +0 −30 lib/hooks/session/generateSecret.js
- +0 −398 lib/hooks/session/index.js
- +0 −18 lib/hooks/sockets/README.md
- +0 −1 lib/hooks/sockets/index.js
- +0 −137 lib/hooks/sockets/lib/authorization.js
- +0 −112 lib/hooks/sockets/lib/connection.js
- +0 −27 lib/hooks/sockets/lib/getSDKMetadata.js
- +0 −297 lib/hooks/sockets/lib/index.js
- +0 −31 lib/hooks/sockets/lib/interpreter/ResStream.js
- +0 −45 lib/hooks/sockets/lib/interpreter/getVerb.js
- +0 −701 lib/hooks/sockets/lib/interpreter/interpret.js
- +0 −26 lib/hooks/sockets/lib/interpreter/saveSessionAndThen.js
- +0 −161 lib/hooks/sockets/lib/loadSocketIO.js
- +0 −6 lib/hooks/userhooks/README.md
- +0 −56 lib/hooks/userhooks/index.js
- +0 −109 lib/hooks/views/actions.js
- +0 −100 lib/hooks/views/configure.js
- +0 −818 lib/hooks/views/consolidate.js
- +0 −29 lib/hooks/views/defaults.js
- +0 −87 lib/hooks/views/index.js
- +0 −61 lib/hooks/views/layoutshim.js
- +0 −98 lib/hooks/views/onRoute.js
- +0 −106 lib/hooks/views/render.js
- +0 −336 lib/hooks/views/res.view.js
- +0 −40 lib/router/README.md
- +0 −354 lib/router/bind.js
- +0 −98 lib/router/bindDefaultHandlers.js
- +0 −344 lib/router/index.js
- +0 −86 lib/router/req.js
- +0 −130 lib/router/res.js
- +29 −69 package.json
- +0 −102 test/benchmarks/README.md
- +0 −243 test/benchmarks/sails.load.test.js
- +0 −12 test/fixtures/middleware.js
- +0 −26 test/helpers/RouteFactory.helper.js
- +0 −296 test/helpers/router.js
- +0 −173 test/hooks/blueprints/initialize.test.js
- +0 −111 test/hooks/request/initialize.test.js
- +0 −150 test/hooks/request/req.metadata.test.js
- +0 −94 test/hooks/request/req.options.usage.test.js
- +0 −155 test/hooks/request/req.validate.test.js
- +0 −46 test/hooks/views/intialize.test.js
- +0 −61 test/hooks/views/res.view.test.js
- +0 −52 test/integration/README.md
- +0 −1 test/integration/fixtures/sampleapp/api/controllers/EmptyController.js
- +0 −8 test/integration/fixtures/sampleapp/api/controllers/PetController.js
- +0 −37 test/integration/fixtures/sampleapp/api/controllers/TestController.js
- +0 −37 test/integration/fixtures/sampleapp/api/controllers/UserController.js
- +0 −1 test/integration/fixtures/sampleapp/api/controllers/UserProfileController.js
- +0 −23 test/integration/fixtures/sampleapp/api/controllers/ViewTestController.js
- +0 −9 test/integration/fixtures/sampleapp/api/policies/error_policy.js
- +0 −10 test/integration/fixtures/sampleapp/api/policies/fake_auth.js
- +1 −1 test/integration/fixtures/sampleapp/config/env/testmysql.js
- +5 −8 test/integration/fixtures/sampleapp/config/local.js
- +0 −1 test/integration/fixtures/sampleapp/views/viewtest/create.ejs
- +0 −1 test/integration/fixtures/sampleapp/views/viewtest/csrf.ejs
- +0 −1 test/integration/fixtures/sampleapp/views/viewtest/index.ejs
- +0 −1 test/integration/fixtures/sampleapp/views/viewtest/viewOptions.ejs
- +0 −197 test/integration/generate.test.js
- +4 −29 test/integration/helpers/appHelper.js
- +0 −39 test/integration/helpers/httpHelper.js
- +0 −4,103 test/integration/helpers/sails.io.js
- +0 −34 test/integration/helpers/socketHelper.js
- +0 −1,030 test/integration/hook.cors_csrf.test.js
- +0 −140 test/integration/hook.i18n.test.js
- +0 −344 test/integration/hook.policies.test.js
- +0 −233 test/integration/hook.pubsub.modelEvents.context.test.js
- +0 −115 test/integration/hook.pubsub.modelEvents.noSubscribers.test.js
- +0 −280 test/integration/hook.pubsub.modelEvents.subscribers.test.js
- +0 −58 test/integration/hook.sockets.interpreter.test.js
- +0 −164 test/integration/lift.test.js
- +0 −170 test/integration/new.test.js
- +0 −202 test/integration/router.APIScaffold.test.js
- +0 −487 test/integration/router.blueprintOptions.test.js
- +0 −166 test/integration/router.defaultController.test.js
- +0 −290 test/integration/router.specifiedRoutes.test.js
- +0 −97 test/integration/router.viewRendering.test.js
- +0 −127 test/integration/www.test.js
- +0 −4 test/unit/App.prototype.load.test.js
- +0 −67 test/unit/bootstrap.test.js
- +0 −59 test/unit/req.errors.test.js
- +0 −49 test/unit/req.test.js
- 0 test/unit/res.test.js
- +0 −259 test/unit/router.bind.test.js
- +0 −22 test/unit/router.test.js
- +0 −41 test/unit/router.unbind.test.js
| @@ -0,0 +1,25 @@ | ||
| .PHONY: test install clean shrinkwrap | ||
| circle-install: | ||
| curl --silent --remote-name https://raw.githubusercontent.com/Shyp/set-node-npm/master/set-node-npm | ||
| chmod +x set-node-npm | ||
| ./set-node-npm | ||
| test: | ||
| node --version | ||
| TZ=GMT ./node_modules/.bin/mocha --bail --slow 2 | ||
| install: | ||
| npm --version | ||
| npm install | ||
| shrinkwrap: clean | ||
| npm cache clear | ||
| npm install --production | ||
| npm shrinkwrap | ||
| npm install --production | ||
| npm shrinkwrap | ||
| clingwrap npmbegone | ||
| clean: | ||
| rm -rf node_modules |
Oops, something went wrong.
Showing you all comments on commits in this comparison.
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment
Hide comment
benbuckman
commented on 78ead64
May 13, 2016
|
@kevinburkeshyp Can this 4.8.0 version be applied to shyp_api? (I'd like to continue to remove pieces of Sails, but this is sort of blocking.) |
This comment has been minimized.
Show comment
Hide comment
This comment has been minimized.
Show comment
Hide comment
kevinburkeshyp
commented on 78ead64
May 13, 2016
|
Yes |
@kevinburkeshyp Can this 4.8.0 version be applied to shyp_api? (I'd like to continue to remove pieces of Sails, but this is sort of blocking.)
Thanks