Skip to content

Commit

Permalink
Updating versions, adding gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
mileszim committed Dec 3, 2017
1 parent 02fcd22 commit a93e6cc
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 6 deletions.
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source 'https://rubygems.org'

gemspec
33 changes: 33 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
PATH
remote: .
specs:
documentcloud (0.5.0)
multi_json (~> 1.8)
rest-client (~> 1.8)

GEM
remote: https://rubygems.org/
specs:
domain_name (0.5.20170404)
unf (>= 0.0.5, < 1.0.0)
http-cookie (1.0.3)
domain_name (~> 0.5)
mime-types (2.99.3)
multi_json (1.12.2)
netrc (0.11.0)
rest-client (1.8.0)
http-cookie (>= 1.0.2, < 2.0)
mime-types (>= 1.16, < 3.0)
netrc (~> 0.7)
unf (0.1.4)
unf_ext
unf_ext (0.0.7.4)

PLATFORMS
ruby

DEPENDENCIES
documentcloud!

BUNDLED WITH
1.16.0
10 changes: 5 additions & 5 deletions documentcloud.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'document_cloud/version'

Gem::Specification.new do |spec|
spec.add_dependency "rest-client", "~> 1.6.7"
spec.add_dependency "rest-client", "~> 1.8"
spec.add_dependency 'multi_json', '~> 1.8'

spec.name = 'documentcloud'
spec.version = DocumentCloud::Version
spec.description = "Rubygem for interacting with the DocumentCloud API"
spec.summary = spec.description
spec.authors = ["Miles Zimmerman"]
spec.email = ['[email protected]']
spec.email = ['[email protected]']
spec.homepage = 'https://github.com/mileszim/documentcloud'
spec.licenses = ['MIT']

spec.files = %w(LICENSE README.md documentcloud.gemspec)
spec.files += Dir.glob("lib/**/*.rb")

spec.require_paths = ['lib']
end
2 changes: 1 addition & 1 deletion lib/document_cloud/version.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module DocumentCloud
class Version
MAJOR = 0 unless defined? DocumentCloud::Version::MAJOR
MINOR = 4 unless defined? DocumentCloud::Version::MINOR
MINOR = 5 unless defined? DocumentCloud::Version::MINOR
PATCH = 0 unless defined? DocumentCloud::Version::PATCH
PRE = nil unless defined? DocumentCloud::Version::PRE

Expand Down

0 comments on commit a93e6cc

Please sign in to comment.