aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile.lock
Commit message (Collapse)AuthorAgeFilesLines
* Use sass-rails in our test suiteRafael Mendonça França2016-06-301-0/+8
|
* Do not allow rack pre releasesRafael Mendonça França2016-06-301-5/+4
|
* Merge pull request #25607 from sstephenson/turbolinks-5-finalRafael Mendonça França2016-06-301-9/+4
|\ | | | | | | Update to Turbolinks 5.0.0 final
| * Update to Turbolinks 5.0.0 finalSam Stephenson2016-06-301-9/+4
| |
* | Point to released coffee-railsRafael Mendonça França2016-06-301-9/+4
|/
* Fix failing railties testsPrathamesh Sonpatki2016-06-181-1/+1
| | | | | | | | | | - Railties tests related to fetching asset URL started failing after the release of sprockets 3.6.1 on Travis. - This was due to the change in https://github.com/rails/sprockets/pull/311/files which changed the logic in `concat_javascript_sources` to add `;` at the end of file if the source did not end with semicolon. - Bumped up sprockets minor version and fixed the failing tests.
* Require Nokogiri >= 1.6.8Jon Moss2016-06-061-8/+12
| | | | per security release today --> https://groups.google.com/forum/#!topic/ruby-security-ann/RCHyF5K9Lbc
* Update Blade and its Sauce Labs plugin for EventMachine 1.2 compatibilityJavan Makhmali2016-06-041-10/+10
|
* Lock Faye version to avoid bug with its Promise polyfill, use mainline ↵Javan Makhmali2016-05-311-14/+10
| | | | blade-sauce_labs_plugin gem
* Revert back to a compatible bundler versionVipul A M2016-05-251-1/+1
|
* CI: run Action Cable browser tests in Sauce LabsJon Moss2016-05-251-1/+22
| | | | | | | | Allow failures until test runs are consistently stable, not hanging. Closes #24943. Signed-off-by: Jeremy Daer <jeremydaer@gmail.com>
* Build action_cable.js with BladeJavan Makhmali2016-05-241-7/+9
|
* Remove Blade gem dependencyVipul A M2016-05-211-0/+40
| | | | | | | | | Apps that depend on Action Cable don't need Blade for app development, so we can remove the gem dependency. We do need Blade for Action Cable dev, so we bundle it in the Gemfile. Signed-off-by: Jeremy Daer <jeremydaer@gmail.com>
* Start Rails 5.1 development :tada:Rafael Mendonça França2016-05-101-55/+63
|
* Fix Gemfile.lock by updating rails-dom-testingPrathamesh Sonpatki2016-05-101-8/+5
| | | | - Followup of https://github.com/rails/rails/pull/24946.
* Preparing for 5.0.0.rc1 releaseRafael Mendonça França2016-05-061-32/+32
|
* Upgrade all gems to make sure Rails works with rack 2.0.0.rc1Rafael Mendonça França2016-05-061-35/+37
|
* Fix template resolver cache concurrency: "can't add a new key into hash ↵Jeremy Daer2016-05-021-2/+2
| | | | | | | | during iteration" Resolved by https://github.com/ruby-concurrency/concurrent-ruby/pull/529 Fixes #24627.
* Prep Rails 5 beta 4eileencodes2016-04-271-35/+37
|
* Merge pull request #23461 from kamipo/prepared_statements_for_mysql2_adapterJeremy Daer2016-04-231-4/+4
|\ | | | | | | Add prepared statements support for `Mysql2Adapter`
| * Add prepared statements support for `Mysql2Adapter`Ryuta Kamizono2016-04-211-4/+4
| |
* | Make file update checker tests more resilient on WindowsSean Griffin2016-04-211-0/+2
|/ | | | | | | | | Without the `wdm` gem, it appears that `listen` keeps an open handle to each of these files, causing them not to be removed when the tempdir tries to clean iteslf up, and then directory to fail to unlink. In addition to fixing that particular failure, we now construct OS agnostic paths, and capture exceptions if the directory fails to unlink so that minitest will report it rather than crash
* Update Gemfile.lockyui-knk2016-03-311-1/+1
| | | | | 'rake' gem is bundled to '>= 11.1' by 30279704646fff33e64c71ee3c4de34bf75232c4 (#23499), but it seems the commit did not fully include Gemfile.lock's.
* Run latest precompiled JRuby on CI only against ActionPackBenjamin Fleischer2016-03-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Uses latest precompiled JRuby so that we don't spend time downloading versions Travis has not already compiled. http://rubies.travis-ci.org/ Uses latest jdk: oraclejdk8 per https://docs.travis-ci.com/user/build-environment-updates/2015-02-03/#Ruby-VM and https://docs.travis-ci.com/user/languages/ruby/#Supported-Ruby-Versions-and-RVM Follows on work in https://github.com/rails/rails/pull/23927 which was reverted https://github.com/rails/rails/commit/26fe5fa08d52384bcea09c4210e3b3baaf5e9b95 JRUBY_OPTS minimize GC, disable JIT, for max test speed - https://github.com/rails/rails/pull/16613 - https://github.com/rails/rails/pull/17088 Have Rails use JRuby-compatible Rake 11.1 - The Rake task was passing --verbose, an invalid option, to contemporary JRuby - https://github.com/ruby/rake/pull/120 - https://github.com/rails-api/active_model_serializers/pull/1585 - https://github.com/jruby/jruby/issues/3653#issuecomment-195883717 No advantage to directly mounting JRuby over installing from cache; both on S3 - https://github.com/rails/rails/pull/23499/commits/b2d5b336b5a812009444571b22eed90777cd9a8c - https://github.com/rails/rails/pull/23499/commits/f4fad041b2755d81e82ee3fc66d96f334b4653db
* Fix Gemfile.lockPrathamesh Sonpatki2016-03-121-1/+1
| | | | | - Resque version was locked to < 1.26 in 92f869a0c85268 but Gemfile.lock was not updated.
* Fix Gemfile.lockRafael Mendonça França2016-03-101-5/+4
|
* Merge pull request #23992 from matthewd/em-optionMatthew Draper2016-03-041-1/+1
|\ | | | | Support faye-websocket + EventMachine as an option
| * Support faye-websocket + EventMachine as an optionMatthew Draper2016-03-021-1/+1
| |
* | Add test to make sure the sprockets cache is not shared per environmentRafael Mendonça França2016-03-021-2/+2
|/
* Prep release for Rails 5 beta3eileencodes2016-02-241-34/+34
|
* Update to the latest Turbolinks gemsSam Stephenson2016-02-231-3/+3
|
* Update dalli gemyui-knk2016-02-141-1/+1
| | | | | | | | | dalli 2.7.6 fixed deprecation warning caused by using `Rack::Session::Abstract::ID`. This commit suppress warnings on ActionPack tests. See: https://github.com/petergoldstein/dalli/commit/9874a7c3ad67eb1e31cafba0a51966db4f0c7e42
* Update turbolinks-rails for passing railties testPrathamesh Sonpatki2016-02-051-3/+8
| | | | Ref - https://github.com/turbolinks/turbolinks-rails/pull/3
* Test with Turbolinks 5Rafael Mendonça França2016-02-041-3/+4
|
* Remove unused dependencyMike Perham2016-02-031-1/+0
| | | railties uses method_source, activesupport does not. I assume code was refactored and the dependency wasn't removed.
* Remove json gem dependencyMike Perham2016-02-031-2/+0
| | | All modern Rubies ship JSON as part of stdlib. Using the gem actually hurts multi-platform support due to build difficulties on Windows.
* Preparing for Rails 5.0.0.beta2Sean Griffin2016-02-011-34/+34
|
* Merge pull request #23381 from matthewd/uneventful-redisMatthew Draper2016-02-021-0/+1
|\ | | | | Redis sans EventMachine
| * Switch the default redis adapter to a single-stream modelMatthew Draper2016-02-011-0/+1
| | | | | | | | | | | | This new adapter does get a little more intimate with the redis-rb gem's implementation than I would like, but it's the least bad of the approaches I've come up with.
* | Update Gemfile.lockPrathamesh Sonpatki2016-02-011-1/+0
|/ | | | - Leftover from https://github.com/rails/rails/commit/93abf58787396661230f31c7a2f58c18f30dbec9.
* Add a couple of tests that connect with a WS clientMatthew Draper2016-01-301-0/+4
|
* Revert "Revert "Eliminate the EventMachine dependency""Matthew Draper2016-01-301-5/+2
|
* Bundle update to fix tests locallyRafael Mendonça França2016-01-281-27/+26
|
* Remove celluloid from the GemfileRafael Mendonça França2016-01-271-21/+0
|
* Merge pull request #23284 from maclover7/suckerpunch-2Eileen M. Uchitelle2016-01-271-5/+5
|\ | | | | Update ActiveJob adapter for sucker_punch 2.0
| * Update ActiveJob adapter for sucker_punch 2.0Jon Moss2016-01-271-5/+5
| | | | | | | | | | | | | | | | This PR includes two changes for 2.0.0: - Breaking API change around `async.perform` --> `perform_async` - New addition of `perform_in`, which now allows end users of the adapter to use the `enqueued_at` public API method.
* | Revert "Eliminate the EventMachine dependency"David Heinemeier Hansson2016-01-271-2/+5
|/
* Update `Gemfile.lock`Ryuta Kamizono2016-01-261-32/+32
|
* Import the relevant portions of faye-websocketMatthew Draper2016-01-241-12/+1
| | | | (as adapted to use concurrent-ruby / nio4r instead of eventmachine)
* Using a hacked faye-websocket, drop EventMachineMatthew Draper2016-01-241-4/+12
|