-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgiantbomb.gemspec
More file actions
25 lines (19 loc) · 867 Bytes
/
giantbomb.gemspec
File metadata and controls
25 lines (19 loc) · 867 Bytes
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
# coding: utf-8
require './lib/giantbomb/version'
Gem::Specification.new do |g|
g.name = "giantbomb-api"
g.version = GiantBomb::VERSION
g.platform = Gem::Platform::RUBY
g.date = Date.today.to_s
g.authors = ["Robert Coker", "Vlad Radulescu"]
g.email = ["rob@robertsays.com", "pacMakaveli90@gmail.com"]
g.homepage = "http://rubygems.org/gems/giantbomb-api"
g.summary = %q{A Ruby wrapper for the GiantBomb API.}
g.description = %q{Provides a complete and simple Ruby interface to communicate with the GiantBomb' API}
g.license = "MIT"
g.add_dependency("httparty")
g.files = `git ls-files`.split("\n")
g.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
g.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
g.require_paths = ["lib"]
end