Skip to content

Commit

Permalink
Update dependencies (#814)
Browse files Browse the repository at this point in the history
  • Loading branch information
EugenMayer authored Sep 8, 2022
1 parent 9b589e7 commit a4d407e
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 15 deletions.
6 changes: 5 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ gemspec
group :test do
gem 'rspec'
gem 'rspec-bash'
gem 'activesupport', '~>5.2'
# last version supports ruby 2.4
gem 'activesupport', '~>5.2.8'
gem 'os', '>= 1.0.0'
# for ruby 2.4 support
gem 'rdoc', '<=6.3.2'
gem 'minitest', '<=5.15.0'
end
21 changes: 12 additions & 9 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
PATH
remote: .
specs:
docker-sync (0.7.2)
daemons (~> 1.2, >= 1.2.3)
dotenv (~> 2.1, >= 2.1.1)
docker-sync (1.0.0)
daemons (~> 1.4, >= 1.4.1)
dotenv (~> 2.8, >= 2.8.1)
gem_update_checker (~> 0.2.0, >= 0.2.0)
os
os (>= 1.0.0)
terminal-notifier (= 2.0.0)
thor (~> 1.0, >= 1.0.0)
thor (~> 1.2, >= 1.2.0)

GEM
remote: https://rubygems.org/
specs:
activesupport (5.2.7.1)
activesupport (5.2.8.1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2)
minitest (~> 5.1)
Expand All @@ -21,16 +21,17 @@ GEM
concurrent-ruby (1.1.10)
daemons (1.4.1)
diff-lcs (1.5.0)
dotenv (2.7.6)
dotenv (2.8.1)
gem_update_checker (0.2.0)
i18n (1.10.0)
i18n (1.12.0)
concurrent-ruby (~> 1.0)
method_source (1.0.0)
minitest (5.15.0)
os (1.1.4)
pry (0.14.1)
coderay (~> 1.1)
method_source (~> 1.0)
rdoc (6.3.2)
rspec (3.11.0)
rspec-core (~> 3.11.0)
rspec-expectations (~> 3.11.0)
Expand Down Expand Up @@ -59,10 +60,12 @@ PLATFORMS
x86_64-linux

DEPENDENCIES
activesupport (~> 5.2)
activesupport (~> 5.2.8)
docker-sync!
minitest (<= 5.15.0)
os (>= 1.0.0)
pry
rdoc (<= 6.3.2)
rspec
rspec-bash

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.2
1.0.0
10 changes: 6 additions & 4 deletions docker-sync.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@ Gem::Specification.new do |s|
s.homepage = 'https://github.com/EugenMayer/docker_sync'
s.required_ruby_version = '>= 2.4'

s.add_runtime_dependency 'thor', '~> 1.0', '>= 1.0.0'
s.add_runtime_dependency 'thor', '~> 1.2', '>= 1.2.0'
s.add_runtime_dependency 'gem_update_checker', '~> 0.2.0', '>= 0.2.0'
s.add_runtime_dependency 'terminal-notifier', '2.0.0'
s.add_runtime_dependency 'dotenv', '~> 2.1', '>= 2.1.1'
s.add_runtime_dependency 'daemons', '~> 1.2', '>= 1.2.3'
s.add_runtime_dependency 'os'
s.add_runtime_dependency 'dotenv', '~> 2.8', '>= 2.8.1'
s.add_runtime_dependency 'daemons', '~> 1.4', '>= 1.4.1'
s.add_runtime_dependency 'os', '>= 1.0.0'

s.add_development_dependency 'pry'
# support for ruby 2.4
s.add_development_dependency 'rdoc', '<= 6.3.2'
end

0 comments on commit a4d407e

Please sign in to comment.