Skip to content

Commit

Permalink
[SL-2584] Fix version conflicts with platform
Browse files Browse the repository at this point in the history
SL-2584
  • Loading branch information
tjmateus authored Mar 20, 2023
2 parents 2aec938 + e1527ac commit 77ed581
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '2.4','2.5','2.6','2.7' ]
ruby: [ '2.7' ]

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.7.7
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby 2.7.5
ruby 2.7.7
8 changes: 4 additions & 4 deletions cronofy.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ Gem::Specification.new do |spec|
spec.files += Dir['spec/**/*.rb']
spec.test_files = Dir['spec/**/*.rb']

spec.add_runtime_dependency "hashie", ">= 2.1", "< 5"
spec.add_runtime_dependency "hashie", "~> 5"
spec.add_runtime_dependency "oauth2", "~> 1.0"

spec.add_development_dependency "bundler", ">= 1.6", "< 3"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.2"
spec.add_development_dependency "webmock", "~> 3.9.1"
spec.add_development_dependency "rake", ">= 13", "< 14"
spec.add_development_dependency "rspec", "~> 3.10"
spec.add_development_dependency "webmock", "~> 3.10"
end

0 comments on commit 77ed581

Please sign in to comment.