Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to Ruby3 #36

Merged
merged 1 commit into from
Mar 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.8
3.0.6
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,19 @@ 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
- Added support for Rails > 5

### Changed
- Switch `colorize` gem for `rainbow`
- Upgrade project to Ruby 2.7.8
- Upgrade project to Ruby 3.0.6

### Deprecated

### Removed
- Removed `bpdocs.yml`
- Removed support for Ruby 2.6.x
- Removed debugging dependencies
- Removed support for Rails 4.x

### Fixed
- Fix documentation formatting for MKDocs
Expand Down
24 changes: 13 additions & 11 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ source 'https://rubygems.org'

gemspec

gem 'generator_spec', '~> 0.9'
gem 'guard', '~> 2.17'
gem 'guard-rspec', '~> 4.7'
gem 'guard-rubocop', '~> 1.5'
gem 'rake', '~> 13.0'
gem 'rspec', '~> 3.10'
gem 'rubocop', '~> 1.21'
gem 'rubocop-performance', '~> 1.11'
gem 'rubocop-rake', '~> 0.5'
gem 'rubocop-rspec', '~> 2.5'
gem 'sqlite3', '~> 1.3.13'
group :development, :test do
gem 'generator_spec', '~> 0.9'
gem 'guard', '~> 2.17'
gem 'guard-rspec', '~> 4.7'
gem 'guard-rubocop', '~> 1.5'
gem 'rake', '~> 13.0'
gem 'rspec', '~> 3.10'
gem 'rubocop', '~> 1.21'
gem 'rubocop-performance', '~> 1.11'
gem 'rubocop-rake', '~> 0.5'
gem 'rubocop-rspec', '~> 2.5'
gem 'sqlite3', '~> 1.3'
end
4 changes: 2 additions & 2 deletions onesie.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.add_runtime_dependency 'activerecord', '>= 4.2.11.3', '<= 5.2.8.1'
spec.add_runtime_dependency 'railties', '>= 4.2.11.3', '<= 5.2.8.1'
spec.add_runtime_dependency 'activerecord', '> 5'
spec.add_runtime_dependency 'railties', '> 5'
spec.add_runtime_dependency 'rainbow', '~> 3'
end
Loading