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

Update gem and ruby versions #66

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
5 changes: 5 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,8 @@ source 'https://rubygems.org'

# Specify your gem's dependencies in readen.gemspec
gemspec

group :development, :test do
gem "pry"
gem "rake"
end
1 change: 1 addition & 0 deletions lib/yomu.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
require 'net/http'
require 'mime/types'
require 'json'
require 'time'

require 'socket'
require 'stringio'
Expand Down
2 changes: 1 addition & 1 deletion lib/yomu/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
class Yomu
VERSION = '0.2.4'
VERSION = '2.0.0'
end
10 changes: 6 additions & 4 deletions yomu.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']

spec.add_runtime_dependency 'mime-types', '~> 1.23'
spec.add_runtime_dependency 'json', '~> 1.8'
spec.add_runtime_dependency 'mime-types', '~> 3.4.1'
spec.add_runtime_dependency 'json', '~> 2.6'

spec.add_development_dependency 'bundler', '~> 1.3'
spec.add_development_dependency 'bundler', '~> 2.4.10'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec', '~> 2.14'
spec.add_development_dependency 'rspec', '~> 3.12.0'

spec.required_ruby_version = '>= 2.7.3'
end