-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcloudsponge.gemspec
More file actions
27 lines (24 loc) · 1.17 KB
/
cloudsponge.gemspec
File metadata and controls
27 lines (24 loc) · 1.17 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
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/cloudsponge/version", __FILE__)
Gem::Specification.new do |s|
s.name = "cloudsponge"
s.version = Cloudsponge::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Graeme Rouse"]
s.email = ["graeme@cloudsponge.com"]
s.homepage = "http://www.cloudsponge.com"
s.summary = "CloudSponge integration library for Ruby"
s.description = "CloudSponge is the tool that you need to go viral. Create an account at http://www.cloudsponge.com and integrate with this library. In a few lines of code you'll have access to your users' contact lists."
s.required_rubygems_version = ">= 1.3.6"
s.add_dependency "json", ">=1.6.1"
s.add_development_dependency "rake"
s.add_development_dependency "test-unit"
s.add_development_dependency "vcr"
s.add_development_dependency "webmock"
s.add_development_dependency "bundler-audit"
s.add_development_dependency "simplecov"
s.add_development_dependency "simplecov-cobertura"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
end