aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile.lock
Commit message (Collapse)AuthorAgeFilesLines
...
* | bundle up sidekiq to the one with safer integration with Rails 5Akira Matsuda2017-05-211-3/+3
| | | | | | | | see: https://github.com/mperham/sidekiq/blob/master/5.0-Upgrade.md
* | bundle up redis to the one that does not warn about ::Fixnum deprecationAkira Matsuda2017-05-211-2/+2
| |
* | mathn has been gemified in ruby 2.5Akira Matsuda2017-05-191-0/+2
| |
* | bundle mail 2.6.5 that includes fix for ::Fixnum warningAkira Matsuda2017-05-191-1/+1
| |
* | Bump rack versionyuuji.yaginuma2017-05-161-1/+1
| |
* | Allow capybara minor releasesJustin Coyne2017-05-051-6/+6
| | | | | | | | | | | | Capybara 2.14.0 was released. Loosen the tight constraint in the generated Gemfile, so that Rails applications can take advantage of the new version
* | Don't pass `arel.engine` to `Arel::SelectManager.new`Ryuta Kamizono2017-05-051-1/+1
| | | | | | | | | | | | The argument of `Arel::SelectManager.new` is `table`, not `engine`. https://github.com/rails/arel/blob/v8.0.0/lib/arel/select_manager.rb#L10
* | Use mysql2 0.4.6 to suport MySQL 8.0.1Yasuo Honda2017-05-041-3/+3
|/ | | | Follow up #28733 and brianmario/mysql2#840
* Ask for a sane version of SDocZachary Scott2017-04-231-4/+4
| | | | | This will allow me to push a release, including bug fixes, without having to update Rails everytime.
* Fix all style guides violationsRafael Mendonça França2017-04-191-2/+2
| | | | | Closes #28382 Closes #28651
* Bump the bundled GlobalID version.Kasper Timm Hansen2017-04-161-5/+5
|
* Revert "Avoid broken faraday 0.12.0 release"Matthew Draper2017-04-021-1/+0
| | | | This reverts commit 82a7593e3ac427215a280dae5bd6cd42f9404650.
* Avoid broken faraday 0.12.0 releaseMatthew Draper2017-04-021-1/+2
|
* Start Rails 5.2 developmentMatthew Draper2017-03-221-35/+41
|
* Bump Capybara and include Minitest::Assertionseileencodes2017-03-171-2/+2
| | | | | | | | | | | | | | | | | | | | | Capybara was updated in teamcapybara/capybara#1841 to use Minitest style assertions so that system test output shows x number of assertions, x numbe of failures, etc. Before: ``` 6 runs, 0 assertions, 0 failures, 0 errors, 0 skips ``` After: ``` 6 runs, 7 assertions, 1 failures, 0 errors, 0 skips ``` This change bumps Capybara from 2.7.0 to 2.13.0 and includes the required minitest assertion file in the test case. :tada:
* Restore action_cable.js UMD module support. Fixes #28366Javan Makhmali2017-03-111-0/+2
|
* Preparing for 5.1.0.beta1 releaseRafael Mendonça França2017-02-231-33/+33
|
* Use released arelRafael Mendonça França2017-02-211-8/+2
|
* Move and rename system testseileencodes2017-02-201-5/+1
| | | | | | | | | | * Move system tests back into Action Pack * Rename `ActionSystemTest` to `ActionDispatch::SystemTestCase` * Remove private base module and only make file for public `SystemTestCase` class, name private module `SystemTesting` * Rename `ActionSystemTestCase` to `ApplicationSystemTestCase` * Update corresponding documentation and guides * Delete old `ActionSystemTest` files
* Turn system testing into it's own gem and renameeileencodes2017-02-201-2/+6
| | | | | | | | | | Renames `Rails::SystemTestCase` to `ActionSystemTest` and moves it to a gem under the Rails name. We need to name the class `ActionSystemTestCase` because the gem expects a module but tests themselves expect a class. Adds MIT-LICENSE, CHANGELOG, and README for the future.
* Add tests for system testingeileencodes2017-02-201-0/+10
| | | | | | | | | | * Adds test case test * Adds driver adapter test * Adds tests for capybara seleium driver (testing the settings not actually opening the browser to test capybara w/ selenium because that would so so so slow) * Adds tests for rack test driver * Adds tests for generators
* Test with the newest i18nAkira Matsuda2017-02-111-1/+1
| | | | which is bundled in new apps by default
* Use released resqueyuuji.yaginuma2017-02-101-12/+7
|
* Fix rubocop violationsRafael Mendonça França2017-02-091-1/+3
|
* delayed_job and delayed_job_active_record gems with AR5 support are availableAkira Matsuda2017-01-291-17/+7
|
* bundle update some gemsAkira Matsuda2017-01-291-3/+3
| | | | | | * puma 3.7.0: to let kill("TERM") properly terminate the process in railties test (3.6.2 doesnot on my machine) * amq-protocol 2.1.0: to reduce warnings in AJ tests * rails-html-sanitizer: missing change in a previous commit that updated Gemfile
* Change ActionView ERB Handler from Erubis to ErubiJeremy Evans2017-01-251-2/+4
| | | | | | | | | | | | | | | | | | | | | | | Erubi offers the following advantages for Rails: * Works with ruby's --enable-frozen-string-literal option * Has 88% smaller memory footprint * Does no freedom patching (Erubis adds a method to Kernel) * Has simpler internals (1 file, <150 lines of code) * Has an open development model (Erubis doesn't have a public source control repository or bug tracker) * Is not dead (Erubis hasn't been updated since 2011) Erubi is a simplified fork of Erubis that contains just the parts that are generally needed (which includes the parts that Rails uses). The only intentional difference in behavior is that it does not include support for <%=== tags for debug output. That could be added to the ActionView ERB handler if it is desired. The Erubis template handler remains in a deprecated state so that code that accesses it directly does not break. It can be removed after Rails 5.1.
* Revert "I guess we're ready for the randomized tests now"Akira Matsuda2017-01-181-3/+1
| | | | | | This reverts commit 8c155c932f37fd2de5b530bc076ed60a03bc926c. Not really :cry:
* I guess we're ready for the randomized tests nowAkira Matsuda2017-01-181-1/+3
|
* Fix all rubocop violationsRafael Mendonça França2017-01-171-15/+13
|
* update rubocop to 0.47toshimaru2017-01-161-5/+5
|
* Revert "bundle u mocha"Akira Matsuda2017-01-161-2/+2
| | | | | | This reverts commit 66e5b9d3f47cd52143be0e6a216ade34bb52b9cc. We're seeing some test failures in AR postgresql tests
* bundle u mochaAkira Matsuda2017-01-151-2/+2
| | | | I see no reason not to use the newest stable version.
* Update builder gem to avoid deprecations of 2.4Kir Shatrov2017-01-131-1/+1
|
* bundle u sqlite3Akira Matsuda2017-01-051-3/+3
| | | | this fixes sqlite3-1.3.12/lib/sqlite3/pragmas.rb:301: warning: method redefined; discarding old integrity_check
* Remove deprecated support to passing a column to #quoteRafael Mendonça França2016-12-291-2/+10
|
* Upgrade to nio4r 2.0.0Tony Arcieri2016-12-281-2/+2
| | | | | | | | | | nio4r 2.0.0 primarily includes new features and bugfixes, with few breaking changes. The primary reason for bumping the major version is dropping support for all Ruby versions prior to 2.2.2, so as to match Rails 5. Full release announcement here: https://groups.google.com/forum/#!topic/socketry/ZDIUj1ufiJ8
* Upgrade gemsRafael Mendonça França2016-12-281-3/+1
|
* bundle updateMatthew Draper2016-12-271-6/+6
|
* Restore missing Gemfile.lock entriesRyuta Kamizono2016-12-271-0/+2
| | | | These lines were lost in https://github.com/rails/rails/commit/774be3ea3b9d25ab69daf11c5071deaf053d7d5b#diff-e79a60dc6b85309ae70a6ea8261eaf95L204.
* bundle updateMatthew Draper2016-12-261-40/+30
|
* Bump sdoc to rc1 which includes zzak/sdoc#98Zachary Scott2016-12-251-4/+4
|
* bundle u rake to 12.0.0Akira Matsuda2016-12-241-1/+1
|
* Bump concurrent-ruby and sprocketsJon Moss2016-12-201-2/+2
| | | | Bumped to Ruby 2.4 compatible versions
* Fix rake guides:generate:kindle errorBian Jiaping2016-12-181-2/+2
|
* Bump coffee-script-source to fix bugeileencodes2016-12-161-1/+1
| | | | | | | | Coffee script 1.12.1 was released and contained a bug where coffee script was undefined. 1.12.1 was yanked and 1.12.2 was released. This bumps coffee-script-source so that CI Railties tests pass. See: https://github.com/jashkenas/coffeescript/issues/4403
* rails-ujs is now shipped with Action ViewGuillermo Iguaran2016-11-291-8/+0
|
* Merge pull request #27196 from kirs/rubocop-gemRafael França2016-11-281-0/+14
|\ | | | | Add rubocop to Gemfile
| * Add rubocop to GemfileKir Shatrov2016-11-281-0/+14
| |
* | Add rails-ujs as dependency in the rails GemfileGuillermo Iguaran2016-11-211-0/+8
| |