-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathawesm.gemspec
29 lines (24 loc) · 1.26 KB
/
awesm.gemspec
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
$:.push File.expand_path("../lib", __FILE__)
require "awesm/version"
Gem::Specification.new do |s|
s.name = "awesm"
s.version = Awesm::VERSION
s.authors = ["Sathya Sekaran", "Michael Durnhofer", "Cody Johnston"]
s.homepage = "http://github.com/sfsekaran/awesm"
s.summary = %q{Totally awe.sm!}
s.description = %q{The 'awesm' gem is an interface for awe.sm (http://totally.awe.sm), a social link analytics tracking service. This gem is in no way maintained by the company Awe.sm, and is third party software written and collaborated on by the development community at large.}
s.rubyforge_project = "awesm"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
# specify any dependencies here;
s.add_development_dependency "rake"
s.add_development_dependency "rspec", ">= 2.7.0"
s.add_development_dependency "webmock", ">= 1.9.0"
s.add_development_dependency "pry"
s.add_runtime_dependency "httpclient"
s.add_runtime_dependency "json"
s.add_runtime_dependency "hashie"
end