forked from kojnapp/bitstamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbitstamp.gemspec
93 lines (88 loc) · 3.21 KB
/
bitstamp.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{bitstamp}
s.version = "0.3.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = [%q{Jeffrey Wilcke}]
s.date = %q{2013-11-19}
s.description = %q{Ruby API for use with bitstamp.}
s.email = %q{stygeo@gmail.com}
s.extra_rdoc_files = [
"LICENSE.txt",
"README.md"
]
s.files = [
".rspec",
".ruby-gemset",
".ruby-version",
"Gemfile",
"Gemfile.lock",
"LICENSE.txt",
"README.md",
"Rakefile",
"VERSION",
"bitstamp.gemspec",
"lib/bitstamp.rb",
"lib/bitstamp/collection.rb",
"lib/bitstamp/helper.rb",
"lib/bitstamp/model.rb",
"lib/bitstamp/net.rb",
"lib/bitstamp/orders.rb",
"lib/bitstamp/ticker.rb",
"lib/bitstamp/transactions.rb",
"spec/bitstamp_spec.rb",
"spec/collection_spec.rb",
"spec/fixtures/vcr_cassettes/bitstamp/balance.yml",
"spec/fixtures/vcr_cassettes/bitstamp/order_book.yml",
"spec/fixtures/vcr_cassettes/bitstamp/orders/all.yml",
"spec/fixtures/vcr_cassettes/bitstamp/orders/buy.yml",
"spec/fixtures/vcr_cassettes/bitstamp/orders/sell/failure.yml",
"spec/fixtures/vcr_cassettes/bitstamp/ticker.yml",
"spec/fixtures/vcr_cassettes/bitstamp/transactions.yml",
"spec/fixtures/vcr_cassettes/bitstamp/user_transactions/all.yml",
"spec/orders_spec.rb",
"spec/spec_helper.rb",
"spec/support/bitstamp_setup.rb",
"spec/support/vcr.rb",
"spec/transactions_spec.rb"
]
s.homepage = %q{http://github.com/kojnapp/bitstamp}
s.licenses = [%q{MIT}]
s.require_paths = [%q{lib}]
s.rubygems_version = %q{1.8.0}
s.summary = %q{Bitstamp Ruby API}
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<activemodel>, [">= 3.1"])
s.add_runtime_dependency(%q<activesupport>, [">= 3.1"])
s.add_runtime_dependency(%q<curb>, ["> 0.8.1"])
s.add_runtime_dependency(%q<ruby-hmac>, ["= 0.4.0"])
s.add_development_dependency(%q<rspec>, [">= 0"])
s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
s.add_development_dependency(%q<bundler>, ["~> 1.3.5"])
s.add_development_dependency(%q<jeweler>, ["~> 1.8.4"])
else
s.add_dependency(%q<activemodel>, [">= 3.1"])
s.add_dependency(%q<activesupport>, [">= 3.1"])
s.add_dependency(%q<curb>, ["> 0.8.1"])
s.add_dependency(%q<ruby-hmac>, ["= 0.4.0"])
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<rdoc>, ["~> 3.12"])
s.add_dependency(%q<bundler>, ["~> 1.3.5"])
s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
end
else
s.add_dependency(%q<activemodel>, [">= 3.1"])
s.add_dependency(%q<activesupport>, [">= 3.1"])
s.add_dependency(%q<curb>, ["> 0.8.1"])
s.add_dependency(%q<ruby-hmac>, ["= 0.4.0"])
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<rdoc>, ["~> 3.12"])
s.add_dependency(%q<bundler>, ["~> 1.3.5"])
s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
end
end