Created
June 20, 2011 15:08
-
-
Save joemiller/1035784 to your computer and use it in GitHub Desktop.
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
group :development do | |
gem "warbler", ">= 0" | |
gem "rack-test", ">= 0" | |
gem "rspec", "~> 2.3.0" | |
gem "rspec-core", "~> 2.3.1" | |
gem "bundler", "~> 1.0.0" | |
gem "jeweler", "~> 1.5.2" | |
gem "rcov", ">= 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
GIT | |
remote: git://github.com/joemiller/configatron.git | |
revision: e0507900c33c72c8b7a3afc511ada6043954b7d8 | |
specs: | |
configatron (2.8.0.20110520095417) | |
yamler (>= 0.1.0) | |
GEM | |
remote: http://rubygems.org/ | |
specs: | |
diff-lcs (1.1.2) | |
git (1.2.5) | |
jdbc-mysql (5.1.13) | |
jdbc-sqlite3 (3.7.2) | |
jeweler (1.5.2) | |
bundler (~> 1.0.0) | |
git (>= 1.2.5) | |
rake | |
jruby-jars (1.6.2) | |
jruby-rack (1.0.9) | |
nokogiri (1.4.5-java) | |
weakling (>= 0.0.3) | |
rack (1.3.0) | |
rack-test (0.6.0) | |
rack (>= 1.0) | |
rake (0.8.7) | |
rcov (0.9.9-java) | |
rspec (2.3.0) | |
rspec-core (~> 2.3.0) | |
rspec-expectations (~> 2.3.0) | |
rspec-mocks (~> 2.3.0) | |
rspec-core (2.3.1) | |
rspec-expectations (2.3.0) | |
diff-lcs (~> 1.1.2) | |
rspec-mocks (2.3.0) | |
rubyzip (0.9.4) | |
sequel (3.24.1) | |
sinatra (1.2.6) | |
rack (~> 1.1) | |
tilt (>= 1.2.2, < 2.0) | |
sinatra-sequel (0.9.0) | |
sequel (>= 3.2.0) | |
sinatra (>= 0.9.4) | |
tilt (1.3.2) | |
warbler (1.3.1) | |
jruby-jars (>= 1.4.0) | |
jruby-rack (>= 1.0.0) | |
rake (~> 0.8.7) | |
rubyzip (>= 0.9.4) | |
weakling (0.0.4-java) | |
yamler (0.1.0) | |
PLATFORMS | |
java | |
DEPENDENCIES | |
bundler (~> 1.0.0) | |
configatron! | |
jdbc-mysql | |
jdbc-sqlite3 | |
jeweler (~> 1.5.2) | |
nokogiri (~> 1.4.5) | |
rack-test | |
rcov | |
rspec (~> 2.3.0) | |
rspec-core (~> 2.3.1) | |
sequel (~> 3.24.1) | |
sinatra (~> 1.2.6) | |
sinatra-sequel (~> 0.9.0) | |
sqlite3 | |
warbler |
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
macbook:click2call joeym$ bundle exec rake | |
(in /Users/joeym/Dropbox/click2call/click2call) | |
/usr/local/rvm/rubies/jruby-1.6.0/bin/jruby -S bundle exec rspec "spec/click2call_spec.rb" | |
Gem::LoadError: rspec-core is not part of the bundle. Add it to Gemfile. | |
gem at /usr/local/rvm/gems/jruby-1.6.0/gems/bundler-1.0.15/lib/bundler/rubygems_integration.rb:143 | |
call at org/jruby/RubyProc.java:268 | |
(root) at /usr/local/rvm/gems/jruby-1.6.0/bin/rspec:18 | |
rake aborted! | |
ruby -S bundle exec rspec "spec/click2call_spec.rb" failed |
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
macbook:click2call joeym$ bundle exec rspec spec/click2call_spec.rb | |
Running migration: create the message_templates table | |
Running migration: create the logs table | |
.F | |
Failures: | |
1) Click2call should list available templates | |
Failure/Error: last_response.body.should include("1,this is template 1") | |
expected "\n" to include "1,this is template 1" | |
Diff: | |
@@ -1,2 +1 @@ | |
-1,this is template 1 | |
# ./spec/click2call_spec.rb:25:in `(root)' | |
# org/jruby/RubyKernel.java:2007:in `instance_eval' | |
# org/jruby/RubyKernel.java:1190:in `catch' | |
# org/jruby/RubyArray.java:2306:in `collect' | |
# org/jruby/RubyArray.java:2306:in `collect' | |
# org/jruby/RubyProc.java:268:in `call' | |
# org/jruby/RubyProc.java:232:in `call' | |
Finished in 0.717 seconds | |
2 examples, 1 failure |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment