@@ -8,28 +8,22 @@ Gem::Specification.new do |spec|
8
8
spec . version = Layer ::Api ::VERSION
9
9
spec . authors = [ "Jake Kelly" ]
10
10
spec . email = [ "[email protected] " ]
11
+ spec . license = "MIT"
11
12
12
13
spec . summary = "A ruby toolkit for Layer's Platform API (https://developer.layer.com/docs/platform)"
14
+ spec . description = "Simple wrapper for the Layer Platform API"
13
15
spec . homepage = "https://github.com/cakejelly/layer-api"
14
16
15
- # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
16
- # delete this section to allow pushing this gem to any host.
17
- if spec . respond_to? ( :metadata )
18
- spec . metadata [ 'allowed_push_host' ] = "TODO: Set to 'http://mygemserver.com'"
19
- else
20
- raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
21
- end
22
-
23
17
spec . files = `git ls-files -z` . split ( "\x0 " ) . reject { |f | f . match ( %r{^(test|spec|features)/} ) }
24
18
spec . bindir = "exe"
25
19
spec . executables = spec . files . grep ( %r{^exe/} ) { |f | File . basename ( f ) }
26
20
spec . require_paths = [ "lib" ]
27
21
28
22
spec . add_development_dependency "bundler" , "~> 1.10"
29
23
spec . add_development_dependency "rake" , "~> 10.0"
30
- spec . add_development_dependency "rspec"
31
- spec . add_development_dependency "vcr"
32
- spec . add_development_dependency "webmock"
24
+ spec . add_development_dependency "rspec" , "~> 3.3" , ">= 3.3.0"
25
+ spec . add_development_dependency "vcr" , "~> 2.9" , ">= 2.9.3"
26
+ spec . add_development_dependency "webmock" , "~> 1.21" , ">= 1.21.0"
33
27
spec . add_development_dependency "pry" , "~> 0.10.1"
34
28
35
29
spec . add_dependency "faraday" , "~> 0.9.1"
0 commit comments