forked from Voog/ipizza
-
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.
Start using bundler and switch to RSpec 2
- Loading branch information
Priit Haamer
committed
Dec 4, 2010
1 parent
2f458a0
commit 1f47e16
Showing
5 changed files
with
27 additions
and
3 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
--color | ||
--format nested |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
source "http://rubygems.org" | ||
|
||
group :development, :test do | ||
gem 'rspec', '2.2.0' | ||
end |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
GEM | ||
remote: http://rubygems.org/ | ||
specs: | ||
diff-lcs (1.1.2) | ||
rspec (2.2.0) | ||
rspec-core (~> 2.2) | ||
rspec-expectations (~> 2.2) | ||
rspec-mocks (~> 2.2) | ||
rspec-core (2.2.1) | ||
rspec-expectations (2.2.0) | ||
diff-lcs (~> 1.1.2) | ||
rspec-mocks (2.2.0) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
rspec (= 2.2.0) |
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
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |s| | |
|
||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | ||
s.authors = ["Priit Haamer"] | ||
s.date = %q{2010-10-24} | ||
s.date = %q{2010-12-04} | ||
s.description = %q{ Simplifies generating payment requests and parsing responses from banks when using iPizza protocol. | ||
} | ||
s.email = %q{[email protected]} | ||
|
@@ -46,6 +46,7 @@ Gem::Specification.new do |s| | |
"spec/certificates/bank.pub", | ||
"spec/certificates/dealer.key", | ||
"spec/certificates/dealer.pub", | ||
"spec/certificates/nordea_test_priv", | ||
"spec/certificates/seb_test_priv.pem", | ||
"spec/certificates/seb_test_pub.crt", | ||
"spec/certificates/seb_test_pub.pem", | ||
|