forked from kojnapp/bitstamp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Regenerate gemspec for version 0.3.0
- Loading branch information
Showing
1 changed file
with
25 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,20 +4,22 @@ | |
# -*- encoding: utf-8 -*- | ||
|
||
Gem::Specification.new do |s| | ||
s.name = %q{bitstamp} | ||
s.version = "0.2.8" | ||
s.name = "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-08-27} | ||
s.description = %q{Ruby API for use with bitstamp.} | ||
s.email = %q{[email protected]} | ||
s.authors = ["Jeffrey Wilcke"] | ||
s.date = "2013-09-26" | ||
s.description = "Ruby API for use with bitstamp." | ||
s.email = "[email protected]" | ||
s.extra_rdoc_files = [ | ||
"LICENSE.txt", | ||
"README.md" | ||
] | ||
s.files = [ | ||
".rspec", | ||
".ruby-gemset", | ||
".ruby-version", | ||
"Gemfile", | ||
"Gemfile.lock", | ||
"LICENSE.txt", | ||
|
@@ -35,15 +37,24 @@ Gem::Specification.new do |s| | |
"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/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} | ||
s.homepage = "http://github.com/kojnapp/bitstamp" | ||
s.licenses = ["MIT"] | ||
s.require_paths = ["lib"] | ||
s.rubygems_version = "1.8.25" | ||
s.summary = "Bitstamp Ruby API" | ||
|
||
if s.respond_to? :specification_version then | ||
s.specification_version = 3 | ||
|
@@ -52,6 +63,7 @@ Gem::Specification.new do |s| | |
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"]) | ||
|
@@ -60,6 +72,7 @@ Gem::Specification.new do |s| | |
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"]) | ||
|
@@ -69,6 +82,7 @@ Gem::Specification.new do |s| | |
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"]) | ||
|