aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile.lock
Commit message (Collapse)AuthorAgeFilesLines
* Preparing for 6.0.0.beta2 releaseRafael Mendonça França2019-02-251-50/+50
|
* Upgrade Zeitwerk to 1.3.1Xavier Noria2019-02-231-2/+2
|
* bump ZeitwerkXavier Noria2019-02-211-2/+2
|
* upgrades Zeitwerk to 1.2.0Xavier Noria2019-02-171-2/+2
|
* Replace autoloader accessors with Rails.autoloaders.{main,once}Xavier Noria2019-02-141-2/+2
| | | | | | | | | | | | | | | | Rails.autoloader and Rails.once_autoloader was just tentative API good enough for a first patch. Rails.autoloader is singular and does not convey in its name that there is another autoloader. That might be confusing, for example if you set a logger and miss traces. On the other hand, the name `once_autoloader` is very close to being horrible. Rails.autoloaders.main and Rails.autoloaders.once read better for my taste, and have a nice symmetry. Also, both "main" and "once" are four letters long, short and same length. They are tagged as "rails.main" and "rails.once", respectively. References #35235.
* Let Zeitwerk be a dependency of Active SupportXavier Noria2019-02-131-2/+2
| | | | | Zeitwerk is a strong dependency, planned to replace AS::Dependencies. A line in the generated Gemfile does not convey this as much.
* Zeitwerk integrationXavier Noria2019-02-121-8/+10
|
* Update Gemfile.lock to reflect `sqlite3` updateyuuji.yaginuma2019-02-051-1/+1
| | | | Follow up to #35154.
* Relax version locking of the selenium-webdriverRyuta Kamizono2019-01-301-3/+3
| | | | 3.5.2 (September 07, 2017) is a little older.
* Merge pull request #35092 from utilum/update_sneakers_to_latest_versionRyuta Kamizono2019-01-301-5/+6
|\ | | | | Update Sneakers to the latest version
| * Update Sneakers to the latest versionutilum2019-01-291-5/+9
| | | | | | | | | | Sneakers 2.11.0 has a more recent Bunny dependency which squashes some Ruby 2.6 warnings tickled by ActiveJob tests.
* | Rename methods and update docsEileen Uchitelle2019-01-291-6/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a minor update to the named methods for the following: - s/desired_capabilities/capabilities - s/driver_options/capabilities Since they are all the same thing we should keep the name the same throughout the feature. Updated docs to match / be a little bit clearer Also updated the Gemfile for selenium-webdriver.
* | Implement a way to add browser capabilities:Edouard CHIN2019-01-291-0/+1
|/ | | | | | | | | | | | | | | | | | * There is currently no way to define specific browser capabilities since our SystemTest driver override the `option` key [Ref](https://github.com/rails/rails/blob/a07d0680787ced3c04b362fa7a238c918211ac70/actionpack/lib/action_dispatch/system_testing/driver.rb#L35) This option key is used internally by selenium to add custom capabilities on the browser. Depending on the Browser, some option are allowed to be passed inside a hash, the driver takes care of setting whatever you passed on the driver option. An example [here](https://github.com/rails/rails/blob/a07d0680787ced3c04b362fa7a238c918211ac70/actionpack/lib/action_dispatch/system_testing/driver.rb#L35) where you are allowed to pass args such as `--no-sandbox` etc However this behavior was only meant for backward compatibility and as you can see it's deprecated. The non-deprecated behavior is to create a `<Driver>::Option` object containing all the capabilities we want. This is what we [currently do](https://github.com/rails/rails/blob/a07d0680787ced3c04b362fa7a238c918211ac70/actionpack/lib/action_dispatch/system_testing/browser.rb#L34-L36) when chrome or firefox are in headless mode. This PR allows to pass a block when calling `driven_by`, the block will be pased a `<Driver>::Option` instance. You can modify this object the way you want by adding any capabilities. The option object will be then passed to selenium. ```ruby driven_by :selenium, using: :chrome do |driver_option| driver_option.add_argument('--no-sandbox') driver_option.add_emulation(device: 'iphone 4') end ```
* Switch queue_classic back to origin repositoryLars Kanis2019-01-251-8/+7
| | | | | | | It has been moved to the a fork as part of https://github.com/rails/rails/pull/31671 . That was since to that time a required PR was not yet merged. Now the queue_classic master branch is compatible to recent pg versions, so that there's no need to keep using a fork.
* Bump RuboCop to 0.63.0Koichi ITO2019-01-191-5/+5
| | | | | | | | | | | | | | | | | | ### Summary RuboCop 0.63.0 has been released. https://github.com/rubocop-hq/rubocop/releases/tag/v0.63.0 And rubocop-0-63 channel is available in Code Climate. https://github.com/codeclimate/codeclimate/releases/tag/v0.83.0 Currently, RuboCop version specified for Gemfile.lock (0.61) and Code Climate (0.60) are different. - https://github.com/rails/rails/blob/v6.0.0.beta1/Gemfile.lock#L407 - https://github.com/rails/rails/blob/v6.0.0.beta1/.codeclimate.yml#L26 This PR matches these versions to 0.63.
* Preparing for 6.0.0.beta1 releaseRafael Mendonça França2019-01-181-54/+51
|
* Use released webpackerRafael Mendonça França2019-01-171-10/+5
|
* Import Action TextGeorge Claghorn2019-01-041-0/+7
|\
| * Fix adding a rich_text_area to a form with no modelGeorge Claghorn2018-12-311-0/+2
| |
| * Bump Nokogiri for Ruby 2.6 compatibilityGeorge Claghorn2018-12-311-4/+4
| |
| * Test against Rails masterJavan Makhmali2018-10-081-64/+68
| |
| * Use released version of Rails 5.2.0 as the dependencyDavid Heinemeier Hansson2018-10-011-37/+37
| |
| * Use actiontext references in Gemfile.lockDavid Heinemeier Hansson2018-05-281-5/+5
| |
| * Dummy: Add mini_magick for variantsJavan Makhmali2018-02-141-0/+2
| |
| * Pull activetext.js into dummy app with webpackerJavan Makhmali2018-02-121-0/+7
| |
| * Add dummy appSam Stephenson2018-02-081-59/+52
| |
| * Initial import from BC3 RichTextSam Stephenson2018-02-071-0/+1
| |
| * Initial commitSam Stephenson2018-02-071-0/+135
|
* Bump Nokogiri for sparklemotion/nokogiri@bf41ba0George Claghorn2018-12-311-8/+8
|
* Switch to released rb-inotify 0.10.0Matthew Draper2018-12-311-9/+2
| | | | It contains guard/rb-inotify#79, which is what we were waiting for.
* Import Action MailboxGeorge Claghorn2018-12-251-2/+23
|\
| * Extract ActionMailbox::PostfixRelayerGeorge Claghorn2018-11-251-15/+9
| |
| * Add a Rake task for piping to the Postfix ingressGeorge Claghorn2018-10-191-0/+18
| |
| * Merge branch 'master' into ingressesGeorge Claghorn2018-10-181-2/+2
| |\
| | * Bump mail to shush mismatched indentation warningsGeorge Claghorn2018-10-171-2/+2
| | |
| * | Accept inbound emails from a variety of ingressesGeorge Claghorn2018-10-111-0/+13
| |/
| * Test against Rails masterGeorge Claghorn2018-10-081-55/+59
| |
| * ActionMailroom -> ActionMailboxDavid Heinemeier Hansson2018-09-281-2/+2
| | | | | | | | We didn't end up using the mailroom metaphor directly, so let's stick with a more conventional naming strategy.
| * First end-to-end rickety testDavid Heinemeier Hansson2018-09-171-0/+2
| |
| * Add dummy app for testingDavid Heinemeier Hansson2018-09-171-0/+128
|
* Eliminate "warning: assigned but unused variable - testEof"Ryuta Kamizono2018-12-191-1/+1
| | | | | | | | | | | | | | | | | | https://github.com/ammar/regexp_parser/pull/57 ``` % be ruby -w -Itest test/controller/filters_test.rb /Users/kamipo/src/github.com/rails/rails/vendor/bundle/ruby/2.5.0/gems/addressable-2.5.2/lib/addressable/idna/pure.rb:154: warning: assigned but unused variable - startercc /Users/kamipo/src/github.com/rails/rails/vendor/bundle/ruby/2.5.0/gems/regexp_parser-1.2.0/lib/regexp_parser/scanner.rb:1146: warning: assigned but unused variable - testEof Run options: --seed 32647 # Running: ................................................... Finished in 0.291176s, 175.1518 runs/s, 343.4349 assertions/s. 51 runs, 100 assertions, 0 failures, 0 errors, 0 skips ```
* Upgrade Rubocop to 0.61.1 and fix offensesVinicius Stock2018-12-101-1/+1
|
* Abort early if generator command fails (#34420)David Rodríguez2018-12-071-2/+2
| | | | | | | | | | | | | | | | * No need to go through ruby * Abort early if a generator command fails * Reuse `rails_command` method * Bump thor minimum dependency to 0.20.3 * Add some minimal docs * Add a changelog entry * Restore original logging
* Make sure we are using a working version of thor locallyRafael Mendonça França2018-11-091-3/+3
|
* bundle updateRafael Mendonça França2018-11-091-54/+55
|
* Upgrade thor to 0.20.1Rafael Mendonça França2018-11-091-8/+1
|
* Use the same version of Rubocop as Code Climateyuuji.yaginuma2018-11-091-3/+3
| | | | Related to: #34406
* Bump mail to `2.7.1`yuuji.yaginuma2018-10-141-1/+1
|
* Add test retries for railtiesGannon McGibbon2018-10-111-1/+4
|
* update nokogiriGreg Molnar2018-10-051-4/+4
|