aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/rails/plugin_new/templates/Gemfile
Commit message (Collapse)AuthorAgeFilesLines
* s/plugin_new/pluginschneems2013-06-301-30/+0
| | | | | There are historical reasons that the `plugin` command was `plugin_new`, now those are no longer applicable, we should remove the naming edge case from the project. This PR is based off of comments from #11176 ATP Railties
* Revert more Rails.version changesRafael Mendonça França2013-04-011-1/+1
| | | | Related with ed8df3ff018d17fad123e48c7cb907332e72e7dc
* remove references to *::VERSION, replace with *.versionCharlie Somerville2013-03-211-1/+1
|
* Ensure plugins generated with plugin new can boot the dummy applicationJosé Valim2013-02-281-8/+0
|
* Merge pull request #8263 from senny/refactor_plugin_new_generatorYehuda Katz2013-01-061-1/+1
|\ | | | | refactor the naming within plugin new generator
| * refactor the naming within plugin new generatorYves Senn2012-11-181-1/+1
| | | | | | | | | | | | Having a method called `full?`, which checks on :full and :mountable is very confusing. I renamed `full?` to `engine?` and created a `full?` method that only checks the `:full` option
* | Gemfile source url for plugins updatedAmparo Luna2012-11-291-1/+1
| |
* | Revert "Merge pull request #8341 from amatsuda/bundle_source_rubygems"Rafael Mendonça França2012-11-271-1/+1
| | | | | | | | | | | | | | | | | | This reverts commit 33b29e0112db62d3a8c798bb58f51c0a839d9e26, reversing changes made to ac8c729342e6b020a57d0d6887c8a8d5b39f96e0. Reason: https://github.com/rails/rails/pull/4684#commitcomment-920313
* | default source in Gemfiles to :rubygems rather than hardcoding the URLAkira Matsuda2012-11-281-1/+1
|/ | | | | | * I guess this would be the preferrable default for Bundler * current version of Bundler converts :rubygems into 'http://rubygems.org', not https://, and that will help those who are working on a very poor network environment that doesn't allow SSL
* Fixed the Gemfile when gemspec is skipped in the 'rails plugin new' commandFred Wu2012-06-051-0/+15
|
* stamp out ruby-debug19 with extreme prejudice :)Aditya Sanghi2012-04-171-1/+1
|
* Fix broken test introduced from #4814Prem Sichanugrist2012-02-011-1/+1
| | | | | | * ruby_debugger_gemfile_entry was removed from the generator. Please make sure to run `grep` or `ack` to make sure it was removed in every places.
* Add jquery-rails to Gemfile of plugins, test/dummy app uses it.Santiago Pastorino2011-09-211-1/+4
| | | | Closes #3091
* Moved dependencies from Gemfile to gemspec to eliminate redundant declarations.Dan Gebhardt2011-07-281-7/+13
|
* Create an :assets group in the Gemfile.José Valim2011-06-211-4/+3
| | | | | | | | | This group is required by default only on development and test (you can change it on config/application.rb). `rake assets:precompile` will automatically add the assets group to Rails.groups (and consequently Bundler.require) and should work transparently.
* properly require javascript libraries when generating mountable engineJ. Edward Dewyea2011-05-301-0/+4
|
* Properly handle other databases in 'plugin new' generatorPiotr Sarnacki2010-11-021-1/+1
|
* Use rails integration tests by default in 'plugin new' generatorPiotr Sarnacki2010-11-021-1/+0
|
* Add --full option to 'plugin new' generator, which generates rails enginePiotr Sarnacki2010-11-021-0/+5
|
* Remove integration tests and ActionModel/ActiveRecord calls from 'rake ↵Piotr Sarnacki2010-11-021-3/+0
| | | | plugin new' generator, it shouldn't be available as default option
* Add --dev and --edge options to rails plugin newPiotr Sarnacki2010-11-021-3/+2
|
* Added 'rails plugin new' generator which generates gem plugin skeleton.Piotr Sarnacki2010-11-021-0/+11
This command is based on enginex gem by José Valim. It generates gem structure and ads dummy application into test/dummy. This can be used to start developing any kind of extension for rails 3.