1
0
Fork 0
mirror of https://github.com/thoughtbot/shoulda-matchers.git synced 2022-11-09 12:01:38 -05:00
Commit graph

20 commits

Author SHA1 Message Date
Pedro Paiva
f029d2601e
Update Rails to the latest version (#1510)
* Bump Rails from 5.2.6 to 5.2.8.1

* Bump Rails from 6.0.4.4 to 6.0.6

* Bump Rails from 6.1.4.4 to 6.1.7

* test: skip validates_presence_of test with has_secure_password when rails greater than 6.0

See: https://github.com/rails/rails/pull/43378

* Bump Rails from 7.0.1 to 7.0.4
2022-09-30 11:19:56 -03:00
Pedro Paiva
e965a27cab
Add support for Ruby 3.1 (#1474) 2022-08-05 14:56:52 -03:00
Josh Nichols
cf4e20cc60
Increase rails 6.0 and 6.1 to latest patchest version (#1486)
* Don't explicitly add action_text, as it's a dependency of rails. Check rails version to see if it should be installed

* Increase rails 6.0 and 6.1 to latest patchest version

* Fix rails version check
2022-01-31 20:14:36 -03:00
Leo Arnold
05a6c37c06
Use bundler v2 in development (#1463)
Prior to this commit, the `Gemfile.lock` enforced the use of
Bundler v1.17.3 which was released in 2014.

On Ruby 3, this triggers the following deprecation warning:

```
/home/user/.rvm/gems/ruby-3.0.2@shoulda-matchers/gems/bundler-1.17.3/lib/bundler/shared_helpers.rb:118: warning: Pathname#untaint is deprecated and will be removed in Ruby 3.2.
```

Since the gem itself in v5.0.0 requires at least Ruby v2.6,
it seems fair to require a recent version of Bundler v2,
which in turn runs of every Ruby v2.3 or later.
2021-10-11 18:08:00 -03:00
Pedro Paiva
2712a419df
Upgrade Rails (#1445) 2021-06-16 10:10:04 -03:00
Pedro Paiva
3da09563b1
Upgrade Rails (#1440) 2021-05-05 20:20:45 -03:00
Pedro Paiva
8dea981df0
Add Ruby 3.0 support (#1427)
* Fix warning: Using the last argument as keyword parameters is deprecated

* Add ruby 3.0 support

* Update listen to support ruby 3.0

* Prevent CI testing Ruby 3.0 with Rails 5.x

* Fix action/cache key

* Update nokogiri

* Use Ruby 3.0.1 for development

* Remove webdrivers gem
2021-04-09 22:56:49 -03:00
Pedro Paiva
21bc474674
Upgrade Rails (#1434) 2021-03-31 15:30:50 -03:00
Pedro Paiva
178df4970c
Update dependencies (#1411) 2021-02-28 04:24:06 -03:00
Kapil Sachdev
b7e02184d9 fix(rubocop): Fix Layout/LineLength
- bump rubocop to v1.0
- Fix Layout/MultilineAssignmentLayout and other remaining offences
- Exculde appraisal generated gemfiles in rubocop
- Replace NON_NUMERIC_VALUE constant with instance method against 
failing test case in  rails <= 5.1 and postgres adapter.
This is a defect in rails where a frozen string is modified in 
https://github.com/rails/rails/blob/v5.1.7/activerecord/lib/active_record/connection_adapters/postgresql/oid/money.rb#L25
2020-11-03 10:05:25 -07:00
Kapil Sachdev
97722f67cb fix(rubocop): Satisfy Style/StringLiterals with single_quotes [ci skip] 2020-11-03 10:05:25 -07:00
Kapil Sachdev
fddf43c057 fix(rubocop): Rearrange gems for Bundler/OrderedGems [ci skip] 2020-11-03 10:05:25 -07:00
Kapil Sachdev
278a381ae8 fix(docs): Migrate to rouge [ci skip] 2020-09-01 09:20:16 -06:00
Elliot Winkler
412ea1f936 Use warnings_logger instead of warnings_spy
`warnings_spy` was a little library I wrote to report warnings that came
up during test runs and fail the CI build. A while back I extracted it
to `warnings_logger`, so the version that exists here is obsolete.
2020-08-23 22:58:51 -06:00
Adam Hanna
47ca444120 Remove webpacker from CI
- Remove webpacker gem from Appraisals for version 6.0.
 - Remove nvm installation before running CI tests
 - On acceptance tests, generate apps without webpacker

Conditionally include --skip-javascript in rails 6.0
2020-07-24 22:54:11 -06:00
Pedro Paiva
0b23942feb Add have_rich_text_matcher
The `have_rich_text` matcher tests usage of the `has_rich_text` macro that was added in Rails 6.
2020-01-23 09:29:57 -07:00
Gui Vieira
d97bdd6cab
Update test versions and dependencies (#1269) 2020-01-01 12:20:50 -08:00
Vít Ondruch
984ce7340b Remove minitest reporters (#1251) 2019-11-18 18:45:13 -08:00
Elliot Winkler
d77cba3521 Update Rubocop across Appraisals 2019-06-09 12:19:21 -06:00
Elliot Winkler
ae9bf4a735 Add minimal support for Rails 6
* Add Rails 6 appraisal to start testing against it.
* Fix usage of Module#parent as this is deprecated in Rails 6 in favor
  of Module#module_parent.
* Ensure that we're using the correct version of `sqlite3` and `pg` at
  all times
* When creating classes within tests, ensure that they are removed
  correctly
* Fix detection of has_secure_password in models: Check that
  InstanceMethodsOnActivation is specifically defined, as Rails 6 no
  longer has such a module.

Co-authored-by: Lee Machin <me@mrl.ee>
2019-04-22 00:10:18 -04:00