forked from tent/tent-client-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtent-client.gemspec
More file actions
32 lines (28 loc) · 1.23 KB
/
tent-client.gemspec
File metadata and controls
32 lines (28 loc) · 1.23 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
28
29
30
31
32
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'tent-client/version'
Gem::Specification.new do |gem|
gem.name = "tent-client"
gem.version = TentClient::VERSION
gem.authors = ["Jonathan Rudenberg", "Jesse Stuart"]
gem.email = ["jonathan@titanous.com", "jessestuart@gmail.com"]
gem.description = %q{Tent Protocol client}
gem.summary = %q{Tent Protocol client}
gem.homepage = "http://tent.io"
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.require_paths = ["lib"]
gem.add_runtime_dependency 'faraday', '0.8.4'
gem.add_runtime_dependency 'faraday_middleware', '0.8.8'
gem.add_runtime_dependency 'nokogiri'
gem.add_runtime_dependency 'yajl-ruby'
gem.add_runtime_dependency 'faraday_middleware-multi_json'
gem.add_runtime_dependency 'addressable'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'bundler'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'guard-rspec'
gem.add_development_dependency 'mocha'
end