Skip to content

Commit

Permalink
Start using bundler and switch to RSpec 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Priit Haamer committed Dec 4, 2010
1 parent 2f458a0 commit 1f47e16
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
--color
--format nested
5 changes: 5 additions & 0 deletions Gemfile
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
18 changes: 18 additions & 0 deletions Gemfile.lock
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)
2 changes: 0 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
require 'rubygems'
require 'rake'

require 'rspec'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec)
Expand Down
3 changes: 2 additions & 1 deletion ipizza.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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]}
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 1f47e16

Please sign in to comment.