Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Merge pull request #16046 from grosser/grosser/cleangen | Rafael Mendonça França | 2014-07-04 | 1 | -2/+1 | |
|\ \ | | | | | | | Do not load rails without loading bundler | |||||
| * | | remove bundler magic | grosser | 2014-07-03 | 1 | -2/+1 | |
| | | | ||||||
* | | | Display notice in index.html pages in scaffolded generated views | Arun Agrawal | 2014-07-04 | 1 | -0/+2 | |
|/ / | | | | | | | | | | | | | | | | | As we are setting notice in destroy action we should display that For more information see https://github.com/rails/rails/pull/14044 And https://github.com/rails/jbuilder/pull/191 closes #14044 | |||||
* | | Talk about config.assts.version move too | Rafael Mendonça França | 2014-06-27 | 1 | -1/+1 | |
| | | | | | | | | Closes #15942 | |||||
* | | Require shellwords since it is dependecy of this file | Rafael Mendonça França | 2014-06-26 | 1 | -0/+2 | |
| | | | | | | | | Closes #15919 | |||||
* | | Add a '--skip-routes' flag for the Controller generator. | Lucas Mazza | 2014-06-24 | 1 | -2/+6 | |
| | | | | | | | | | | This way it is possible to skip the addition of the 'get "foo/bar"' routes when generating a controller. | |||||
* | | Titling the model name in views generated by scaffold. | Amit Suryavanshi | 2014-06-18 | 3 | -3/+3 | |
| | | | | | | | | | | eg. rails g scaffold UserProfile will have in index.html.erb "Listing User Profiles" rather than Listing user_profiles. | |||||
* | | :scissors: | Rafael Mendonça França | 2014-06-17 | 1 | -8/+8 | |
| | | ||||||
* | | Add a generic --skip-gems options to generator | Rafael Mendonça França | 2014-06-17 | 1 | -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 | |||||
* | | Add an option to skip installation of Turbolinks | Marc Schütz | 2014-06-14 | 1 | -2/+7 | |
| | | ||||||
* | | [ci skip] Fix capitalization | Akshay Vishnoi | 2014-06-07 | 1 | -4/+4 | |
| | | ||||||
* | | remove rubyforge.org that was shut down [ci skip] | Gaurav Sharma | 2014-06-06 | 2 | -4/+2 | |
| | | ||||||
* | | File.exist? instead of File.exists? in bin/setup | David Jones | 2014-06-02 | 1 | -1/+1 | |
| | | | | | | | | | | File.exists? is deprecated in Ruby 2.1+ https://github.com/ruby/ruby/blob/v2_1_2/file.c#L1413 | |||||
* | | bin/setup uses `bundle check || bundle install` to improve performance. | Yves Senn | 2014-05-30 | 1 | -1/+1 | |
| | | ||||||
* | | `bin/setup` script to bootstrap applications. | Yves Senn | 2014-05-30 | 1 | -0/+28 | |
| | | ||||||
* | | Merge pull request #15327 from alexbel/replace_double_quotes_with_single_quotes | Yves Senn | 2014-05-27 | 1 | -4/+13 | |
|\ \ | | | | | | | | | | Replace double quotes with single quotes while adding an entry into Gemfile | |||||
| * | | Replace double quotes with single quotes while adding an entry into Gemfile | alexbel | 2014-05-26 | 1 | -4/+14 | |
|/ / | ||||||
* | | integration tests do not need to load fixtures by hand | Xavier Noria | 2014-05-25 | 1 | -3/+0 | |
| | | | | | | | | | | I don't know when this changed, checked back up to 3.2 and integration tests instantiate fixtures just fine. | |||||
* | | Merge pull request #15299 from andriytyurnikov/engine_friendly_rake_stats | Rafael Mendonça França | 2014-05-24 | 1 | -0/+4 | |
|\ \ | | | | | | | rake stats for engines | |||||
| * | | rake stats for engines | Andriy Tyurnikov | 2014-05-24 | 1 | -0/+4 | |
| | | | ||||||
* | | | Merge pull request #15298 from ShunsukeAida/fix_capitalization | Rafael Mendonça França | 2014-05-24 | 1 | -1/+1 | |
|\ \ \ | | | | | | | | | fixed capitalization [ci skip] | |||||
| * | | | fixed capitalization | ShunsukeAida | 2014-05-25 | 1 | -1/+1 | |
| |/ / | ||||||
* | | | Add FIXME note about the thor bug | Rafael Mendonça França | 2014-05-24 | 1 | -0/+2 | |
| | | | ||||||
* | | | Merge pull request #9083 from bronson/patch-1 | Rafael Mendonça França | 2014-05-24 | 1 | -1/+4 | |
|\ \ \ | |/ / |/| | | | | | avoid using alias in generators | |||||
| * | | avoid using alias in generators | Scott Bronson | 2013-01-25 | 1 | -1/+4 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ruby's alias produces public methods, causing a spurious Thor task to be created. For example, this is the reason MigrationGenerator currently has two tasks: > ActiveRecord::Generators::MigrationGenerator.all_tasks.keys => ["singular_name", "create_migration_file"] singular_name was meant to be an attribute, not a task. Because it's public, it gets called as a task every time the generator is invoked. The fix is to ensure all generator methods have the correct visibility. | |||||
* | | | Default config.assets.digests to true in development | Dan Kang | 2014-05-17 | 1 | -0/+3 | |
| |/ |/| | ||||||
* | | New applications should be created with json serializer | Rafael Mendonça França | 2014-05-17 | 1 | -0/+5 | |
| | | | | | | | | | | | | | | | | | | | | | | The fix introduced at 75ba7425f6d235f254c00a45a58f42e88f80301a were missing this case. To fix the original issue mentioned at that commit the correct is to remove update_config_files from the command list since we should not run both config_files command when creating a new application. Tests were added to make sure everything is working fine. | |||||
* | | Fix app generator test hanging. | Christian Wesselhoeft | 2014-05-17 | 1 | -4/+0 | |
| | | ||||||
* | | foo :bomb: | Rafael Mendonça França | 2014-05-16 | 1 | -2/+5 | |
| | | ||||||
* | | Generate the cookies_serializer configuration with :marshal when upgrading | Rafael Mendonça França | 2014-05-16 | 1 | -0/+11 | |
| | | | | | | | | | | | | | | | | | | | | | | We were generating this configuration with :json what may break applications upgrating from Rails 4.0-. Now we always generate with a safer value and people is free to choose hybrid if they want. We don't generate with hybrid by default because there are some cases that can fail. These cases are explained on the upgrading guide. | |||||
* | | Replace :base with :in [ci skip] | Marcio Junior | 2014-05-11 | 1 | -2/+2 | |
| | | ||||||
* | | Change Gemfile’s double quotes in plugin generator | Josemar Luedke | 2014-05-10 | 1 | -3/+3 | |
| | | | | | | | | | | Since the generated application’s Gemfile is using single quotation marks, it seems fair to use it on plugin’s Gemfile as well. | |||||
* | | skip-git should not hit git commands plugin generators | Arun Agrawal | 2014-05-02 | 1 | -6/+14 | |
| | | ||||||
* | | Works correctly if git not installed | Roman Shmatov | 2014-05-02 | 1 | -8/+6 | |
| | | ||||||
* | | Automaticly add username and email if configured in git-scm, as bundle gem | Abd ar-Rahman Hamidi | 2014-05-02 | 3 | -3/+19 | |
| | | ||||||
* | | Avoid unnecessary conditional block | Giovanni Cappellotto | 2014-05-01 | 1 | -5/+0 | |
| | | | | | | | | | | GeneratedAttribute#column_name checks already for reference? on the attribute returning the right name to use as symbol for label and field. | |||||
* | | Generators, remove leftover variable assignment. refs #14877 | Yves Senn | 2014-04-27 | 1 | -1/+0 | |
| | | | | | | | | | | The last uses of this variable was removed with the `--builder` option. 2da5ea1c9feb4a7b491bd00bd6ffd931b9203da8 | |||||
* | | Revert "Edge Rails applications doesn't need to use arel master" | Aaron Patterson | 2014-04-23 | 1 | -1/+2 | |
| | | | | | | | | This reverts commit 7f62f30f58fe5f2955e3292ab1f01aa2c9a8f0ee. | |||||
* | | Bundle tzinfo-data on :x64_mingw (64-bit Ruby on Windows). | Phil Ross | 2014-04-12 | 1 | -1/+1 | |
| | | ||||||
* | | Merge pull request #14646 from deivid-rodriguez/provide_byebug_by_default | Rafael Mendonça França | 2014-04-11 | 2 | -3/+11 | |
|\ \ | | | | | | | Improve debugging support | |||||
| * | | Prevent generation of extra whitespace in templates | David Rodríguez de Dios | 2014-04-10 | 2 | -6/+6 | |
| | | | ||||||
| * | | Update Gemfile templates to provide correct debugger | David Rodríguez de Dios | 2014-04-08 | 2 | -3/+11 | |
| | | | ||||||
* | | | Move assets precompile (and version) to an initializer | Matthew Draper | 2014-04-11 | 3 | -6/+15 | |
| | | | | | | | | | | | | | | | sprockets-rails 2.1 needs the precompile list to be available in all environments. | |||||
* | | | +EOL | Akira Matsuda | 2014-04-10 | 1 | -1/+1 | |
| | | | ||||||
* | | | Dont abbreviate that which needs no abbreviation | David Heinemeier Hansson | 2014-04-08 | 1 | -2/+2 | |
| | | | ||||||
* | | | Dont encourage aliases now that we have variants | David Heinemeier Hansson | 2014-04-08 | 1 | -1/+0 | |
| | | | ||||||
* | | | Use short-form for the scaffold render calls and drop the needless test | David Heinemeier Hansson | 2014-04-08 | 1 | -2/+2 | |
|/ / | ||||||
* | | Drop in @jeremy's new database.yml template text | Matthew Draper | 2014-04-09 | 11 | -43/+197 | |
| | | | | | | | | | | In passing, allow multi-word adapters to be referenced in a URL: underscored_name must become hyphened-name. | |||||
* | | Use sass-rails 4.0.3 | Rafael Mendonça França | 2014-04-04 | 1 | -1/+1 | |
| | | ||||||
* | | Revise 'sqlite3:' URL handling for smoother upgrades | Matthew Draper | 2014-04-03 | 1 | -2/+4 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Restore the 4.0 behaviour for 'sqlite3:///', but deprecate it. We'll change to the absolute-path interpretation in 4.2. The current "correct" spellings for in-memory, relative, and absolute URLs, respectively, are: sqlite3::memory: sqlite3:relative/path sqlite3:/full/path Substantially reverses/defers fbb79b517f3127ba620fedd01849f9628b78d6ce. Uncovered by @guilleiguaran while investigating #14495, though that sounds like a different issue. |