search for: edge_rails

Displaying 7 results from an estimated 7 matches for "edge_rails".

2006 Mar 29
2
edge_rails, sqlserver, and an error!
Hello, Using Edge_Rails and SQL Server I get an error in my schema.rb file after issuing "rake migrate". database.yml --------------------------------- development: adapter: sqlserver database: triage_development username: user password: pass host: server schema.rb --------------------------------- #...
2006 Feb 11
6
Rails 1.1?
I have a few very basic questions. Is anyone using rails 1.1? How/Where can I get Rails 1.1 (I don''t see it on RubyonRails.org? What are the issues involved in moving from Rails 1.0 to Rails 1.1? If I move to Rails 1.1, can I downgrade? Just curious. Thank you very much for your assistance. Frank --------------------------------- Yahoo! Mail Use Photomail
2006 Mar 28
12
cached-model broken with Rails 1.1
...elow indicates it''s trying to treat CachedModel as the class name of the model, rather than using the proper class name (which is Entry in this case, and the table called entries). This is a model using Single Table Inheritance and acts_as_tree, and worked just fine under 1.0 and under edge_rails as of a few weeks ago. SQLite3::SQLException: no such table: cached_models: SELECT * FROM cached_models WHERE (parent_id is NULL) LIMIT 1 RAILS_ROOT: public/../config/.. Application Trace | Framework Trace | Full Trace /usr/local/lib/ruby/gems/1.8/gems/activerecord-1.14.0/lib/active_record/conn...
2007 Sep 28
4
RSpec + EdgeRails on Windows
I recently post on my blog about setting up a Rails environment with RSpec in Windows, and someone left a comment saying that it doesn''t work in EdgeRails. I so I played around with it a bit and was able to confirm that none RSpec appears broken on EdgeRails. I''ll post the various error messages I received below. I''m not expecting any sort of patch or something for this
2006 Mar 07
10
[PREVIEW] SmallCap
...r.com -u, --user=USER User id for server. Default: youruserid -d, --deploy-path=FULLPATHNAME Specifies the full path on server for deployment. Default: /full/path/to/deployment/directory -e, --edge_rails If present, copies edge or gem rails to server. -p, --plugins If present, copies plugins directory to server. -c, --components If present, copies components directory to server. -i, --script If present, copies scr...
2006 Mar 28
0
Ruby 1.8.4 broke my Rails 1.1
I''ve been running edge_rails on ruby 1.8.2 for a while pretty successfully. Today, I decided to unfreeze_rails, install the new gem for 1.1 and then while I was at it, upgrade to Ruby 1.8.4. I did the whole configure, make, make test, make install. When I fired up rails, I started getting all sorts of errors: /usr/local/lib...
2006 Jan 23
1
Help with hmabt relationships
hey, I want to have this table structure with users and groups A user can be in more than 1 group and a group has more than 1 user. class User < ActiveRecord::Base has_many_and_belongs_to :groups end class Group < ActiveRecord::Base has_many_and_belongs_to :users end I was wondering if i can do this for group in user.groups ...do stuff end -AND- for user in group.users ...do stuff end