aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile.lock
Commit message (Collapse)AuthorAgeFilesLines
* 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
| |
* | Bump Blade and its Sauce Labs plugin to fix tunnel shutdown and related errorJavan Makhmali2016-11-211-12/+14
|/ | | | https://travis-ci.org/rails/rails/jobs/165766716#L506
* Install libxml-ruby gem so full XMLMini test suite can be runJon Moss2016-11-191-0/+2
|
* Make sure to bundle json 2.x on CIAkira Matsuda2016-11-151-0/+1
| | | | | Without this, bundler tries to bundle json 1.8 on Ruby 2.4 in some cases https://travis-ci.org/rails/rails/jobs/175874852
* Update sqlite3Gianfranco Montoya2016-11-041-3/+3
|
* Merge pull request #26851 from Gaurav2728/update-kindlerbRafael França2016-10-251-9/+5
|\ | | | | update kindlerb gem
| * update kindlerb gemGaurav Sharma2016-10-211-9/+5
| | | | | | Ruby Kindle periodical-format ebook generator
* | Update mysql2 version in Gemfile.lockGuillermo Iguaran2016-10-221-4/+4
|/
* Include sdoc 1.0.0.beta2 which includes updated rdoc w/o hard json depZachary Scott2016-10-071-6/+5
|
* Bump sdoc to 1.0.0.beta1 which includes fix to support Ruby 2.4Zachary Scott2016-10-071-3/+2
|
* Use a branch of websocket-client-simple, to work around read/close raceMatthew Draper2016-10-061-4/+10
|
* Restore missing Gemfile.lock entriesRyuta Kamizono2016-10-041-0/+2
| | | | These lines were lost in https://github.com/rails/rails/pull/26695/files#diff-e79a60dc6b85309ae70a6ea8261eaf95L192.
* Allow the use of listen's 3.1.x branch.Esteban Santana Santana2016-10-031-19/+20
| | | | | | When the initial evented monitor feature was written, the latest version of listen was the 3.0.x series. Since then the listen project has moved on to the 3.1.x series. This patch allows the use of the new versions.
* Use websocket-client-simple instead of Faye as a websockets clientMatthew Draper2016-10-021-2/+5
| | | | | | Mostly, this is just to avoid EventMachine. But there's also an argument to be made that we're better off using a different protocol library for our test suite than the one we use to implement the server.
* Restore missing Gemfile.lock entriesRyuta Kamizono2016-09-201-0/+2
| | | | These lines were lost in https://github.com/rails/rails/commit/12d5c210#diff-e79a60dc6b85309ae70a6ea8261eaf95L191.
* Override the github git source instead of changing manually all entriesRafael Mendonça França2016-09-141-52/+53
|
* Use :git for specifying dependencies from github with https protocolPrathamesh Sonpatki2016-09-101-6/+6
| | | | | | - This is required for bundler 1.13.0 because of which lot of specs are failing on Travis CI. - Similar to https://travis-ci.org/rails/rails/jobs/158905576#L559