aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
Commit message (Collapse)AuthorAgeFilesLines
* delayed_job and delayed_job_active_record gems with AR5 support are availableAkira Matsuda2017-01-291-2/+2
|
* Change ActionView ERB Handler from Erubis to ErubiJeremy Evans2017-01-251-0/+3
| | | | | | | | | | | | | | | | | | | | | | | 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-1/+2
| | | | | | This reverts commit 8c155c932f37fd2de5b530bc076ed60a03bc926c. Not really :cry:
* I guess we're ready for the randomized tests nowAkira Matsuda2017-01-181-2/+1
|
* update rubocop to 0.47toshimaru2017-01-161-1/+1
|
* Revert "bundle u mocha"Akira Matsuda2017-01-161-1/+1
| | | | | | This reverts commit 66e5b9d3f47cd52143be0e6a216ade34bb52b9cc. We're seeing some test failures in AR postgresql tests
* bundle u mochaAkira Matsuda2017-01-151-1/+1
| | | | I see no reason not to use the newest stable version.
* Remove deprecated support to passing a column to #quoteRafael Mendonça França2016-12-291-0/+2
|
* bundle updateMatthew Draper2016-12-261-3/+0
|
* Bump sdoc to rc1 which includes zzak/sdoc#98Zachary Scott2016-12-251-1/+1
|
* Fix rake guides:generate:kindle errorBian Jiaping2016-12-181-1/+1
|
* rails-ujs is now shipped with Action ViewGuillermo Iguaran2016-11-291-1/+0
|
* Merge pull request #27196 from kirs/rubocop-gemRafael França2016-11-281-0/+2
|\ | | | | Add rubocop to Gemfile
| * Add rubocop to GemfileKir Shatrov2016-11-281-0/+2
| |
* | Add rails-ujs as dependency in the rails GemfileGuillermo Iguaran2016-11-211-0/+1
|/
* Install libxml-ruby gem so full XMLMini test suite can be runJon Moss2016-11-191-0/+1
|
* Make sure to bundle json 2.x on CIAkira Matsuda2016-11-151-0/+3
| | | | | 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 kindlerb gemGaurav Sharma2016-10-211-1/+1
| | | Ruby Kindle periodical-format ebook generator
* Include sdoc 1.0.0.beta2 which includes updated rdoc w/o hard json depZachary Scott2016-10-071-1/+1
|
* Bump sdoc to 1.0.0.beta1 which includes fix to support Ruby 2.4Zachary Scott2016-10-071-1/+1
|
* Use a branch of websocket-client-simple, to work around read/close raceMatthew Draper2016-10-061-1/+1
|
* Allow the use of listen's 3.1.x branch.Esteban Santana Santana2016-10-031-1/+1
| | | | | | 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-4/+1
| | | | | | 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.
* Override the github git source instead of changing manually all entriesRafael Mendonça França2016-09-141-10/+15
|
* Use :git for specifying dependencies from github with https protocolPrathamesh Sonpatki2016-09-101-10/+10
| | | | | | - 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
* applies new string literal convention in GemfileXavier Noria2016-08-061-61/+61
| | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
* Don't require C dependencies on Windows/JRubySean Griffin2016-08-031-2/+2
|
* Do not require rb-inotifyRafael Mendonça França2016-07-271-1/+1
|
* Use a form of rb-inotify to fix broken tests with Ruby 2.2.5Rafael Mendonça França2016-07-271-0/+3
| | | | See https://github.com/nex3/rb-inotify/pull/49
* test with latest resqueyuuji.yaginuma2016-07-051-1/+1
| | | | | | | | | | | | | | | | | | | When run test of Active Job with resque 1.26, occurs following error. ``` QueuingTest#test_current_locale_is_kept_while_running_perform_later: NoMethodError: undefined method `current_tags' for #<Resque::QuietFormatter:0x0055b44f63ed50> /home/yaginuma/program/rails/master_y_yagi/rails/activejob/lib/active_job/logging.rb:51:in `logger_tagged_by_active_job?' ``` This was happening for the formatter class of resque not the formatter class of Rails is they've been used to logger.formatter. This was happening because become fomatter is changed during the instantiation of worker in the resque 1.26. In the master, unless the environment variable is set, fomatter is so as not to be changed, test will pass. Ref: https://github.com/resque/resque/pull/1439
* Use sass-rails in our test suiteRafael Mendonça França2016-06-301-0/+1
|
* Merge pull request #25607 from sstephenson/turbolinks-5-finalRafael Mendonça França2016-06-301-1/+1
|\ | | | | | | Update to Turbolinks 5.0.0 final
| * Update to Turbolinks 5.0.0 finalSam Stephenson2016-06-301-1/+1
| |
* | Point to released coffee-railsRafael Mendonça França2016-06-301-1/+1
|/
* Require Nokogiri >= 1.6.8Jon Moss2016-06-061-1/+1
| | | | 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-2/+2
|
* Lock Faye version to avoid bug with its Promise polyfill, use mainline ↵Javan Makhmali2016-05-311-1/+4
| | | | blade-sauce_labs_plugin gem
* CI: run Action Cable browser tests in Sauce LabsJon Moss2016-05-251-0/+2
| | | | | | | | 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-1/+1
|
* Remove Blade gem dependencyVipul A M2016-05-211-0/+1
| | | | | | | | | 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-4/+5
|
* Merge pull request #23461 from kamipo/prepared_statements_for_mysql2_adapterJeremy Daer2016-04-231-1/+1
|\ | | | | | | Add prepared statements support for `Mysql2Adapter`
| * Add prepared statements support for `Mysql2Adapter`Ryuta Kamizono2016-04-211-1/+1
| |
* | Make file update checker tests more resilient on WindowsSean Griffin2016-04-211-0/+1
|/ | | | | | | | | 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
* 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
* Ping the resque version while we can't investigate the failureRafael Mendonça França2016-03-111-1/+1
|
* Version 3.1.11 works on Windows againT.J. Schuck2016-03-101-7/+1
| | | | | | This undoes https://github.com/rails/rails/commit/7241498e51120b9847a8bc16cf48551db0f3e216 https://github.com/codahale/bcrypt-ruby/issues/128 is fixed and closed.
* Update GemfileSarah A2016-03-031-1/+1
| | | Changes "as has to be loaded" to "as it has to be loaded"
* Update turbolinks-rails for passing railties testPrathamesh Sonpatki2016-02-051-1/+1
| | | | Ref - https://github.com/turbolinks/turbolinks-rails/pull/3
* Test with Turbolinks 5Rafael Mendonça França2016-02-041-1/+1
|