-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcraftar.gemspec
More file actions
31 lines (28 loc) · 1.1 KB
/
craftar.gemspec
File metadata and controls
31 lines (28 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
require File.expand_path('../lib/craftar/version', __FILE__)
Gem::Specification.new do |spec|
spec.name = 'craftar'
spec.version = Craftar::VERSION
spec.date = '2015-05-25'
spec.description = %q{ Ruby client that supports all of the Craftar CraftAR API methods. Intuitive query methods allow you easily call API endpoints. }
spec.summary = %q{ Ruby client for the official Craftar CraftAR Management API }
spec.authors = ["Marieke Gueye"]
spec.email = 'marieke.gueye@gmail.com'
spec.files = [
"lib/craftar.rb",
"lib/craftar/base.rb",
"lib/craftar/collection.rb",
"lib/craftar/image.rb",
"lib/craftar/item.rb",
"lib/craftar/media.rb",
"lib/craftar/token.rb",
"lib/craftar/collection_bundle.rb",
"lib/craftar/app.rb",
"lib/craftar/sdk_version.rb",
"lib/craftar/tag.rb"
]
spec.homepage = 'https://github.com/mkou/craftar'
spec.license = 'MIT'
spec.add_development_dependency "rspec", '~> 3.2', '>= 3.2.0'
spec.add_development_dependency "pry"
spec.add_dependency "httmultiparty", '~> 0.3', '>= 0.3.16'
end