Skip to content

Commit

Permalink
REVISED gem versions refined
Browse files Browse the repository at this point in the history
  • Loading branch information
jdkim committed Dec 20, 2017
1 parent d7e88a6 commit 546d9db
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 14 deletions.
4 changes: 2 additions & 2 deletions Gemfile
@@ -1,5 +1,5 @@
source 'https://rubygems.org'

gem 'rest-client'
gem 'rest-client', '~> 2.0', '>= 2.0.2'
gem 'nokogiri', '~> 1.8'
gem 'text_sentencer', '~> 1.0.2'
gem 'text_sentencer', '~> 1.0', '>= 1.0.2'
20 changes: 11 additions & 9 deletions Gemfile.lock
@@ -1,31 +1,33 @@
GEM
remote: https://rubygems.org/
specs:
domain_name (0.5.20160310)
domain_name (0.5.20170404)
unf (>= 0.0.5, < 1.0.0)
http-cookie (1.0.2)
http-cookie (1.0.3)
domain_name (~> 0.5)
mime-types (2.99.1)
mime-types (3.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2016.0521)
mini_portile2 (2.2.0)
netrc (0.11.0)
nokogiri (1.8.0)
mini_portile2 (~> 2.2.0)
rest-client (1.8.0)
rest-client (2.0.2)
http-cookie (>= 1.0.2, < 2.0)
mime-types (>= 1.16, < 3.0)
netrc (~> 0.7)
mime-types (>= 1.16, < 4.0)
netrc (~> 0.8)
text_sentencer (1.0.2)
unf (0.1.4)
unf_ext
unf_ext (0.0.7.2)
unf_ext (0.0.7.4)

PLATFORMS
ruby

DEPENDENCIES
nokogiri (~> 1.8)
rest-client
text_sentencer (~> 1.0.2)
rest-client (~> 2.0, >= 2.0.2)
text_sentencer (~> 1.0, >= 1.0.2)

BUNDLED WITH
1.16.0.pre.3
Binary file added enju_accessor-1.0.2.gem
Binary file not shown.
Binary file removed enju_accessor-1.0.gem
Binary file not shown.
8 changes: 5 additions & 3 deletions enju_accessor.gemspec
@@ -1,15 +1,17 @@
Gem::Specification.new do |s|
s.name = 'enju_accessor'
s.version = '1.0'
s.summary = 'A wrapper for Enju CGI service to convert the output to the PubAnnotation JSON format.'
s.version = '1.0.2'
s.summary = 'A wrapper for Enju CGI service for PubAnnotation.'
s.date = Time.now.utc.strftime("%Y-%m-%d")
s.description = 'A wrapper for Enju CGI service to convert the output to the PubAnnotation JSON format.'
s.authors = ["Jin-Dong Kim"]
s.email = 'jindong.kim@gmail.com'
s.files = ["lib/enju_accessor.rb", "lib/enju_accessor/enju_accessor.rb"]
s.executables << 'enju_parse_text'
s.executables << 'enju_tag_text'
s.add_runtime_dependency 'text_sentencer', '~> 1.0.2'
s.add_runtime_dependency 'text_sentencer', '~> 1.0', '>= 1.0.2'
s.add_runtime_dependency 'nokogiri', '~> 1.8'
s.add_runtime_dependency 'rest-client', '~> 2.0', '>= 2.0.2'
s.homepage = 'https://github.com/jdkim/enju_accessor'
s.license = 'MIT'
end

0 comments on commit 546d9db

Please sign in to comment.