search for: rails_version

Displaying 9 results from an estimated 9 matches for "rails_version".

Did you mean: mail_version
2006 Aug 10
0
quickk fix for engine on dreamhost with 1.1.5
HI all this is a quick fix to get you rails app running on dreamhost if engines has stopped since the 1.1.5 upgrade comment out line 6 and 7 in vendor\plugins\engines\lib\engines\engines.rb as the require ''rails_version'' will give you an error like /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:18:in `require__'': no such file to load -- rails_version (MissingSourceFile) quick and dirty e.g engines.rb begin #require ''rails_version'' # Rails 1.0, 1.1.0 #rescue requ...
2006 Apr 02
2
Problem with edge rails
Hello, When I am trying to run rake migration tasks, I get the error as shown below. I am using ruby 1.8.4 and edge rails. What am I missing or doing wrong? C:\rails\temp1>rake db:migrate (in C:/rails/temp1) rake aborted! no such file to load -- rails_version Thanks for your help. -- Surendra Singhi http://ssinghi.kreeti.com, http://www.kreeti.com Read my blog at: http://cuttingtheredtape.blogspot.com/ ,---- | Great wits are sure to madness near allied, | And thin partitions do their bounds divide. | | (John Dryden, Absalom and Achitophel, 1681)...
2006 Apr 06
4
Engines 1.1.1
Since a minor change in Rails (renaming the file that the version is stored in, namely) causes a bit of a hiccup for the Engines plugin, here''s a new release, full of bug fixes and other nice things. ALL users of Engines are advised to update their copy of the plugin to get these fixes. The Engines plugin is fully backwards compatible with Rails 1.0. Anyway - to update, please download
2006 May 02
7
vendor/rails seems to be being ignored in preference to gem?
I have edge rails in /vendor/rails on DreamHost, but when running dispatch.fcgi I get the following error in my logs: [02/May/2006:08:52:32 :: 29365] terminated gracefully [02/May/2006:08:53:53 :: 19526] starting [02/May/2006:08:53:54 :: 19526] Dispatcher failed to catch: undefined method `clear_connection_cache!'' for ActiveRecord::Base:Class (NoMethodError)
2006 Jul 28
0
GEM-based rails application installer
...le `bin/my-app`: #!/usr/bin/env ruby require ''rubygems'' require ''rails-installer'' class AppInstaller < RailsInstaller application_name ''my_app'' support_location ''my website'' rails_version ''1.1.4'' end # Installer program directory = ARGV[1] app = AppInstaller.new(directory) app.message_proc = Proc.new do |msg| STDERR.puts " #{msg}" end app.execute_command(*ARGV) That''s all that''s needed...
2006 Feb 08
5
RJS
I am playing with the new .rjs stuff in edge rails. I am doing stuff like : page.replace_html ''scoops_tot'', @scoops.size 1. I want to add my own javascript functions to the page object. Is it possible and how ? 2. I am trying to update several fields, but i would like a to have a dekay between the updates : @anoclicks.each{|aclick| page.replace_html
2006 Aug 10
5
how to upgrade rails
hi Is there a way to eaisly upgrade rails to the most recent version? thanks Scott -- Posted via http://www.ruby-forum.com/.
2006 May 09
7
FCGI and the never ending saga of deploying on Dreamhost
I''m trying to setup an app on Dreamhost and running into no end of problems. The app is running with edge rails and I''m currently getting the dreaded ''Rails application failed to start'' white screen when trying to access it. I''ve gone through all the ''gotchas'' and troubleshooting docs at Dreamhost and the rails wiki to no avail.
2013 Apr 02
10
Suggested strategies for testing a gem against Rails 3.x and Rails 4?
I''ve seen a few examples of dummy Rails apps (for testing, so they live under test or spec dirs, typically) for use with the Appraisals gem that supposedly work with both Rails 3.x and Rails 4, but they seem hackish and not fully functional. It is somewhat expected, as it is a stripped down Frankenstein monster that is trying to be compatible with various versions of Rails 3 as well