This file contains hidden or 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
source "http://rubygems.org" | |
gem 'rails', '3.0.10' | |
gem 'rack', '~> 1.2.4' | |
gem 'rack-mount', '~> 0.6.14' | |
gem 'rack-test', '~> 0.5.7' | |
gem "rake" | |
platforms :jruby do | |
gem 'rmagick4j' |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
[WARNING] ToughbookPrograms-knob.yml has not been deployed. Starting TorqueBox anyway. | |
Calling "C:\jruby-1.6.5\lib\ruby\gems\1.8\gems\torquebox-server-2.0.0.beta1-java\jboss\bin\standalone.conf.bat" | |
=============================================================================== | |
JBoss Bootstrap Environment | |
JBOSS_HOME: C:/jruby-1.6.5/lib/ruby/gems/1.8/gems/torquebox-server-2.0.0.beta1-java/jboss | |
JAVA: C:\Java\jre6\bin\java |
This file contains hidden or 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
GEM | |
remote: http://rubygems.org/ | |
specs: | |
Ascii85 (1.0.1) | |
aasm (2.3.1) | |
activerecord | |
abstract (1.0.0) | |
actionmailer (3.0.10) | |
actionpack (= 3.0.10) | |
mail (~> 2.2.19) |
This file contains hidden or 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
16:00:42,913 INFO [org.torquebox.core.runtime] (Thread-88) Initialize? true | |
16:00:42,913 INFO [org.torquebox.core.runtime] (Thread-88) Initializer=org.torquebox.web.rails.RailsRuntimeInitializer@7169e6 | |
16:00:43,314 INFO [org.torquebox.core.runtime.BundlerAwareRuntimeInitializer] (Thread-88) Setting up Bundler | |
16:00:45,177 ERROR [stderr] (Thread-88) ==== Iterating ==== | |
16:00:45,177 ERROR [stderr] (Thread-88) | |
16:00:45,187 ERROR [stderr] (Thread-88) Activated: | |
16:00:45,187 ERROR [stderr] (Thread-88) Requirements: | |
16:00:45,187 ERROR [stderr] (Thread-88) torquebox-transactions (= 2.0.0.beta1) java | |
16:00:45,187 ERROR [stderr] (Thread-88) will_paginate (= 3.0.pre2) java | |
16:00:45,187 ERROR [stderr] (Thread-88) rails (= 3.0.10) java |
This file contains hidden or 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
bundle install --path=vendor/bundle | |
more to follow... |
This file contains hidden or 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
source "http://rubygems.org" | |
source "http://gems.github.com" | |
gem 'rails', '3.0.10' | |
gem "rake" | |
platforms :jruby do | |
gem 'rmagick4j' | |
gem "activerecord-jdbc-adapter", "~> 1.2.0" | |
gem "jdbc-mysql", "~> 5.1.13" |
This file contains hidden or 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
development: | |
adapter: jdbc | |
encoding: utf8 | |
username: root | |
password: password | |
driver: com.mysql.jdbc.Driver | |
url: jdbc:mysql://localhost:3306/myappname_development | |
test: | |
adapter: jdbc |