forked from wecodeio/shared_count_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shared_count_api.gemspec
24 lines (21 loc) · 1.05 KB
/
shared_count_api.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'shared_count_api/version'
Gem::Specification.new do |spec|
spec.name = "shared_count_api"
spec.version = SharedCountApi::VERSION
spec.authors = ["Cristian Rasch"]
spec.email = ["[email protected]"]
spec.description = %q{Thin wrapper around the SharedCount API in vanilla Ruby}
spec.summary = %q{This library wraps the SharedCount API exposing its data through POROs (Plain Old Ruby Objects)}
spec.homepage = "https://github.com/wecodeio/shared_count_api"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "minitest", "~> 5.0.8"
spec.add_development_dependency "minitest-line", "~> 0.5.0"
spec.add_development_dependency "webmock", "~> 1.16.0"
end