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 Ruby 3 + MongoDB 6 #225

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ language: ruby
services: mongodb
before_script: ./script/ci/before_build.sh
rvm:
- 2.6.5
- 2.7.2
- 3.0.5
- 3.1.2
addons:
code_climate:
repo_token: 3fa74f2ade25037fccd7261090acbdeae232639c3a83aafb80ee428ec16b8cf9
26 changes: 12 additions & 14 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,29 @@ gemspec

group :development do
# gem 'locomotivecms_common', github: 'locomotivecms/common', ref: '4d1bd56'
# gem 'locomotivecms_common', path: '../common'
gem 'locomotivecms_common', path: '../common'
# gem 'duktape', path: '../tmp/duktape.rb'
# gem 'duktape', github: 'judofyr/duktape.rb', ref: '20ef6a5'
# gem 'duktape', github: 'did/duktape.rb', branch: 'any-fixnum'

gem 'puma', '~> 5.6.4'
gem 'haml', '~> 5.2.0'
gem 'puma', '~> 6.1.0'
gem 'haml', '~> 6.1.1'

gem 'rack', '~> 2.2.3.1'
gem 'rack-mini-profiler', '~> 0.10.1'
gem 'rack', '~> 2', '< 3'
gem 'rack-mini-profiler', '~> 3.0.0'
gem 'flamegraph'
gem 'stackprof' # ruby 2.1+ only
gem 'memory_profiler'
gem 'rubocop'
end

group :test do
gem 'rspec', '~> 3.7.0'
gem 'rspec', '~> 3.12.0'
gem 'json_spec', '~> 1.1.5'
gem 'i18n-spec', '~> 0.6.0'

gem 'timecop', '~> 0.9.1'

# gem 'pry-byebug', '~> 3.3.0'

gem 'rack-test', '~> 0.8.2'

gem 'coveralls', '~> 0.8.1', require: false
gem 'rack-test', '~> 2.0.2'

gem 'timecop', '~> 0.9.6'
gem 'pry-byebug', '~> 3.10.1'
gem 'simplecov', require: false
end
Loading