Skip to content

Commit

Permalink
Merge pull request #31 from watermelonexpress/merge-to-timlkelly
Browse files Browse the repository at this point in the history
Support Rails 5.2.8.1
  • Loading branch information
timlkelly authored Mar 17, 2024
2 parents 4bf98ed + 7777d8a commit 8381959
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Layout/EndAlignment:

Layout/LineLength:
Max: 100
IgnoredPatterns:
AllowedPatterns:
- !ruby/regexp /\A +(it|describe|context|shared_examples|include_examples|it_behaves_like) ["']/

Layout/MultilineMethodCallIndentation:
Expand All @@ -34,6 +34,11 @@ Metrics/BlockLength:
- 'Rakefile'
- 'spec/**/*.rb'

RSpec:
Language:
Expectations:
- assert_migration

RSpec/MultipleExpectations:
Max: 2
RSpec/MultipleMemoizedHelpers:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added
- Added `.DS_Store` to `.gitignore`
- Added support for Rails version 5.2.8.1 and lower

### Changed

Expand Down
4 changes: 2 additions & 2 deletions onesie.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'rubocop-rspec', '~> 2.5'
spec.add_development_dependency 'sqlite3', '~> 1.3.13'

spec.add_runtime_dependency 'activerecord', '~> 4.2.11.3'
spec.add_runtime_dependency 'activerecord', '>= 4.2.11.3', '<= 5.2.8.1'
spec.add_runtime_dependency 'colorize', '~> 0.8.1'
spec.add_runtime_dependency 'railties', '~> 4.2.11.3'
spec.add_runtime_dependency 'railties', '>= 4.2.11.3', '<= 5.2.8.1'
end

0 comments on commit 8381959

Please sign in to comment.