1. 22 3月, 2019 1 次提交
  2. 14 3月, 2019 1 次提交
  3. 11 3月, 2019 1 次提交
    • E
      Prep release · e69ff430
      eileencodes 提交于
      * Bump RAILS_VERSION
      * Bundle
      * rake update_versions
      * rake changelog:header
      e69ff430
  4. 16 2月, 2019 1 次提交
  5. 02 1月, 2019 1 次提交
  6. 05 12月, 2018 1 次提交
  7. 29 11月, 2018 1 次提交
  8. 28 11月, 2018 1 次提交
  9. 15 10月, 2018 1 次提交
  10. 17 9月, 2018 1 次提交
  11. 07 9月, 2018 1 次提交
  12. 17 8月, 2018 1 次提交
  13. 08 8月, 2018 1 次提交
  14. 31 7月, 2018 1 次提交
  15. 31 5月, 2018 1 次提交
  16. 23 5月, 2018 1 次提交
  17. 12 4月, 2018 1 次提交
    • E
      Remove upper bound on Capybara · de9d67bb
      eileencodes 提交于
      There's no reason to block future versions of Capybara since we don't
      _know_ they are going to break. How will we know if we have a
      conservative option set? This change prevents us from blocking users who
      want to upgrade in the future.
      
      cherry-pick 72f17d59
      de9d67bb
  18. 11 4月, 2018 2 次提交
    • Y
      Unlock dalli version · 7827bcf3
      yuuji.yaginuma 提交于
      The issue was fixed with https://github.com/petergoldstein/dalli/pull/679,
      and a new version containing that fix was released.
      7827bcf3
    • Y
      Fix incorrect version specification of `bunny` · 4284ac41
      yuuji.yaginuma 提交于
      Without this fix, `bundle update` raise an error as follows.
      
      ```
      Bundler could not find compatible versions for gem "bunny":
        In snapshot (Gemfile.lock):
          bunny (= 2.6.7)
      
        In Gemfile:
          sneakers was resolved to 2.7.0, which depends on
            bunny (~> 2.9.2)
      
      Running `bundle update` will rebuild your snapshot from scratch, using only
      the gems in your Gemfile, which may resolve the conflict.
      ```
      
      It seems that made an incorrect version specification
      with 655ff935.
      4284ac41
  19. 10 4月, 2018 1 次提交
  20. 08 4月, 2018 1 次提交
    • E
      Restore Capybara's dependencies in Gemfile.lock · 6e48d63d
      Eugene Kenny 提交于
      These went missing in b5d26248, which
      was causing `bundle install` to fail with:
      
          Downloading capybara-3.0.1 revealed dependencies not in the API or the lockfile (addressable (>= 0), mini_mime (>= 0.1.3), nokogiri (~> 1.8), rack (>= 1.6.0), rack-test (>= 0.6.3), xpath (~> 3.0)).
          Either installing with `--full-index` or running `bundle update capybara` should fix the problem.
      
          In Gemfile:
            capybara
      6e48d63d
  21. 07 4月, 2018 2 次提交
  22. 06 4月, 2018 1 次提交
  23. 03 4月, 2018 1 次提交
  24. 02 4月, 2018 3 次提交
  25. 24 3月, 2018 1 次提交
  26. 23 3月, 2018 1 次提交
  27. 22 3月, 2018 2 次提交
    • R
      Fix `test_config_another_database` failure · be23187e
      Ryuta Kamizono 提交于
      Somehow `test_config_another_database` didn't fail on CI, but it will
      fail locally.
      
      https://travis-ci.org/rails/rails/jobs/356212950#L2474-L2482
      
      ```
      % bundle exec ruby -w -Itest test/generators/app_generator_test.rb -n test_config_another_database
      Run options: -n test_config_another_database --seed 7260
      
      # Running:
      
      F
      
      Failure:
      AppGeneratorTest#test_config_another_database [test/generators/app_generator_test.rb:417]:
      Expected /^\s*gem\s+["']mysql2["'], '~> 0.4.4'$*/ to match "source 'https://rubygems.org'\ngit_source(:github) { |repo| \"https://github.com/\#{repo}.git\" }\n\nruby '2.5.0'\n\n# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'\ngem 'rails', '~> 6.0.0.alpha'\n# Use mysql as the database for Active Record\ngem 'mysql2', '>= 0.4.4', '< 0.6.0'\n# Use Puma as the app server\ngem 'puma', '~> 3.11'\n# Use SCSS for stylesheets\ngem 'sass-rails', '~> 5.0'\n# Use Uglifier as compressor for JavaScript assets\ngem 'uglifier', '>= 1.3.0'\n# See https://github.com/rails/execjs#readme for more supported runtimes\n# gem 'mini_racer', platforms: :ruby\n\n# Use CoffeeScript for .coffee assets and views\ngem 'coffee-rails', '~> 4.2'\n# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks\ngem 'turbolinks', '~> 5'\n# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder\ngem 'jbuilder', '~> 2.5'\n# Use Redis adapter to run Action Cable in production\n# gem 'redis', '~> 4.0'\n# Use ActiveModel has_secure_password\n# gem 'bcrypt', '~> 3.1.7'\n\n# Use ActiveStorage variant\n# gem 'mini_magick', '~> 4.8'\n\n# Use Capistrano for deployment\n# gem 'capistrano-rails', group: :development\n\n# Reduces boot times through caching; required in config/boot.rb\ngem 'bootsnap', '>= 1.1.0', require: false\n\ngroup :development, :test do\n  # Call 'byebug' anywhere in the code to stop execution and get a debugger console\n  gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]\nend\n\ngroup :development do\n  # Access an interactive console on exception pages or by calling 'console' anywhere in the code.\n  gem 'web-console', '>= 3.3.0'\n  gem 'listen', '>= 3.0.5', '< 3.2'\n  # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring\n  gem 'spring'\n  gem 'spring-watcher-listen', '~> 2.0.0'\nend\n\ngroup :test do\n  # Adds support for Capybara system testing and selenium driver\n  gem 'capybara', '>= 2.15', '< 4.0'\n  gem 'selenium-webdriver'\n  # Easy installation and use of chromedriver to run system tests with Chrome\n  gem 'chromedriver-helper'\nend\n\n# Windows does not include zoneinfo files, so bundle the tzinfo-data gem\ngem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]\n".
      
      bin/rails test test/generators/app_generator_test.rb:411
      
      Finished in 0.174681s, 5.7247 runs/s, 34.3483 assertions/s.
      1 runs, 6 assertions, 1 failures, 0 errors, 0 skips
      ```
      be23187e
    • A
      Update loofah to mitigate CVE-2018-8048 · 7c5cb86d
      Andrew White 提交于
      See flavorjones/loofah#144
      7c5cb86d
  28. 21 3月, 2018 2 次提交
  29. 06 3月, 2018 2 次提交
  30. 21 2月, 2018 1 次提交
  31. 15 2月, 2018 1 次提交
  32. 14 2月, 2018 1 次提交
  33. 08 2月, 2018 1 次提交