-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstreamsend.gemspec
More file actions
21 lines (18 loc) · 821 Bytes
/
streamsend.gemspec
File metadata and controls
21 lines (18 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.authors = ["Scott Albertson"]
gem.email = %q{salbertson@streamsend.com}
gem.summary = %q{Ruby wrapper for the StreamSend API.}
gem.description = %q{Ruby wrapper for the StreamSend API.}
gem.homepage = %q{http://github.com/salbertson/streamsend-ruby}
gem.date = %q{2012-04-02}
gem.add_dependency "httparty", "0.7.4"
gem.add_development_dependency "rspec", "~> 2.9"
gem.add_development_dependency "webmock", "~> 1.6"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "streamsend"
gem.require_paths = ["lib"]
gem.version = "0.1.2"
end