aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/app_base.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add version constraint to database gem in generated applicationRafael Mendonça França2015-10-291-11/+22
| | | | | | We are using the same version constraint in the database adapters so when a new version of the adapter that doesn't work with the version of rails is released we don't break new applications.
* dev and edge have some common, so factor it out.Eric Guo2015-09-131-10/+7
|
* smooth move aaron.... :bomb:Aaron Patterson2015-08-201-2/+2
|
* point at rack masterAaron Patterson2015-08-201-0/+2
|
* Migrate to Sprockets 4.Andrei Istratii2015-08-191-2/+4
|
* Disable jbuilder for Rails API apps, meanwhile it doesn't play nicelySantiago Pastorino2015-06-111-0/+2
|
* api option implies skipping javascript & sprocketsSantiago Pastorino2015-06-111-2/+2
|
* rails new --api generates an api app skeletonSantiago Pastorino2015-06-111-2/+2
|
* Use sprockets-rails from github repoYoong Kang Lim2015-06-021-0/+2
| | | | See #20397
* Omit .keep in .gitignore when generated with --skip-keeps.Ben Pickles2015-05-221-1/+5
|
* Implicitly skip spring for `rails new --dev`Godfrey Chan2015-04-201-1/+1
| | | | | | Spring seems like an obvious foot gun for the `--dev` setup, presumably you are about to make lots of changes to the codebase, so it should always reload the framework.
* Print `bundle install` output in `rails new` as soon as it's availableMax Holder2015-03-281-6/+6
| | | | | | | | | | | | | | | Previously, running `rails new` would not print any of the output from `bundle install` until all the gems had finished installing. This made it look like the generator was hanging at the `bundle install` step. This commit switches to using `system` so that the bundle command can output as it needs to. This has the added benefit of including output bundler produces on standard error, which the previous code ignored since backticks only capture standard out. This is not a big deal right now since bundler does not currently print errors to standard error, but that may change in the future (see: bundler/bundler/issues/3353).
* Update sprockets links to point to rails orgJoshua Peek2015-03-131-1/+1
|
* Remove documentation tasksXavier Noria2015-02-061-6/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch removes the tasks doc:app, doc:rails, and doc:guides. In our experience applications do not generate APIs using doc:app. Methods may be certainly documented for maintainers, annotated with YARD tags, etc. but that is intended to be read with the source code, not in a separate website. Then, teams also have typically selected topics written down in Markdown files, or in a GitHub wiki... that kind of thing. If a team absolutely needs to generate application documentation for internal purposes, they can still easily write their own task. Regarding doc:rails and doc:guides, we live in 2015. We are used to go to online docs all the time. If you really want access to the API offline RubyGems generates it for every Rails component unless you tell it not to, and you can checkout the Rails source code to read the guides as Markdown, or download them for a Kindle reader. All in all, maintaining this code does not seem to be worthwhile anymore. As a consequence of this, guides (+3 MB uncompressed) won't be distributed with the rails gem anymore. Of course, guides and API are going to be still part of releases, since documentation is maintained alongside code and tests. Also, time permitting, this will allow us to experiment with novel ways to generate documentation in the Rails docs server, since right now we were constrained by being able to generate them in the user's environment.
* Use public Module#include, in favor of https://bugs.ruby-lang.org/issues/8846robertomiranda2015-01-311-1/+1
| | | | ref: https://github.com/rails/rails/pull/18763#issuecomment-72349769
* Change option description and update test namesMelanie Gilman2015-01-291-1/+1
|
* Update option to skip test in generatorsMelanie Gilman2015-01-271-3/+3
| | | | Rails no longer generates Test::Unit files by default.
* Add --skip-action-mailer (or -M) to rails generateclaudiob2015-01-011-1/+5
|
* Fix Duplicate web-console entries in GemfileNorimasaAndo2014-12-141-10/+0
|
* New applications should use sass-rails 5.0Rafael Mendonça França2014-12-121-6/+1
|
* Rails master requires arel masterRafael Mendonça França2014-12-121-2/+8
|
* Align the GemfileEntry API with stable branchesGodfrey Chan2014-12-121-5/+9
| | | | See 63462ec
* Use latest web-console when using --dev or --edgeSam Ruby2014-12-051-0/+10
| | | | | | Fixes: http://intertwingly.net/projects/AWDwR4/checkdepot-215/makedepot.log
* We don't need to use sass-rails 5.0.0.betaRafael Mendonça França2014-11-281-2/+1
|
* Revert "Test against rack master"Santiago Pastorino2014-11-271-2/+2
| | | | This reverts commit 2a4e14db981e38611667d407a975600ee720ada7.
* Test against rack masterRafael Mendonça França2014-11-261-2/+2
|
* Use jquery-rails 4.0.0Rafael Mendonça França2014-11-251-8/+2
|
* Fix syntax error :bomb:Rafael Mendonça França2014-11-251-2/+2
|
* Use released rails-dom-testingRafael Mendonça França2014-11-251-2/+0
|
* Fix sprockets-rails dependency danceArthur Neves2014-11-241-2/+0
| | | | | | - Remove sprockets-rails from generated Gemfile as rails has a hard-dependency on it - Also allow sprockets-rails >= 2.0.0
* Generate new applications with the right rails-dom-testing versionRafael Mendonça França2014-11-171-2/+4
|
* Skip spring install in Cygwin due to fork() bad support.michaeljayt2014-11-171-1/+1
| | | | See also: https://www.cygwin.com/faq.html#faq.using.fixing-fork-failures
* Add back --skip-turbolinks and remove --skip-gemsRafael Mendonça França2014-10-261-6/+9
| | | | | | | For the most part of cases --skip-gems option just remove one line in the Gemfile. This is not worth for the complexity it adds. Closes #17196
* Default generated Gemfile to coffee-rails ~> 4.1.0Joshua Peek2014-10-121-2/+2
|
* Remove --skip-action-view option from application generatorDan Olson2014-09-241-4/+1
|
* Dependencies: bump to jquery-rails 4.0.0.beta2Godfrey Chan2014-09-051-1/+1
|
* Use the released jquery-rails gemGodfrey Chan2014-09-051-2/+8
|
* Use jquery-rails masterRafael Mendonça França2014-09-011-1/+1
|
* Point to right sass-rails versionRafael Mendonça França2014-08-191-1/+1
|
* Rack is released tooRafael Mendonça França2014-08-181-4/+2
|
* No need to point to arel and i18n master anymoreRafael Mendonça França2014-08-181-6/+2
|
* Pull spring gem entry into the Gemfile template instead of gemfile_entries ↵David Heinemeier Hansson2014-08-071-7/+0
| | | | so it can be grouped with the other development tools
* Stop using padding in the generated Gemfile -- it looks shitDavid Heinemeier Hansson2014-08-071-4/+0
|
* Fix syntax errorRafael Mendonça França2014-07-231-1/+2
|
* Dev and edge application and plugins need to include i18n masterRafael Mendonça França2014-07-231-1/+2
|
* Set Psych as the YAML engine for RubiniusRobin Dupret2014-07-231-0/+9
| | | | | | | | | | Since the rubysl-yaml gem doesn't ship with Psych by default because of its dependency on libyaml, on Rubinius, the default engine is Syck. However, if we want to be able to run the application safely on different rubies, we need to make people using Rubinius rely on Psych. See http://git.io/uuLVag for further information.
* Merge pull request #13999 from jamox/update_rackAaron Patterson2014-07-081-2/+4
|\ | | | | This updates rails to use edge rack
| * Upgraded rackJarmo Isotalo2014-05-191-2/+4
| | | | | | | | | | | | | | | | As Rack has some non backwards compatible changes added required modifications to keep behaviour in rails close to same as before. Also modified generators to include rack/rack for not yet released version of rack
* | :scissors:Rafael Mendonça França2014-06-171-8/+8
| |
* | Add a generic --skip-gems options to generatorRafael Mendonça França2014-06-171-8/+6
| | | | | | | | | | | | | | | | | | | | Also remove --skip-turbolinks. This option is useful if users want to remove some gems like jbuilder, turbolinks, coffee-rails, etc that don't have specific options on the generator. rails new my_app --skip-gems turbolinks coffee-rails