I'm kicking off a new Rails project in NetBeans using JRuby (v1.2.0) which uses Rails (2.3.2). I don't need a database, all my data comes from the cloud.
I've uncommented this line in my environment
config.frameworks -= [ :active_record, :active_resource, :action_mailer]
However, I still get the following errors just trying to call an action. Hosting on GlassFish.
java.net.SocketException: java.net.ConnectException: Connection refused: connect at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:156) at com.mysql.jdbc.MysqlIO.(MysqlIO.java:276) at com.mysql.jdbc.Connection.createNewIO(Connection.java:2666) at com.mysql.jdbc.Connection.(Connection.java:1531)
Any ideas where else I might need changes to not use a database? thanks