Displaying 20 results from an estimated 10000 matches similar to: "1.1.4 tagged."
2006 Jun 27
25
1.1.3 available.
Hello,
DHH has just announced the release of Rails 1.1.3
http://weblog.rubyonrails.org/2006/6/27/rails-1-1-3-security-fix-and-minor-fixes
rails-1.1.3
activerecord-1.14.3
actionpack-1.12.2
actionmailer-1.2.2
actionwebservice-1.1.3
The announce without the repetition :)
"Rails 1.1.3: Security fix and minor fixes
Posted by David June 27, 2006 @ 08:07PM
We''ve found and fixed a
2006 Aug 04
0
Rake migrate errors, but it still works
I get the errors below when running rake migrate, but it still works.
Is there anything to be bothered about? Some appear twice.
All of the below are installed from portage in Gentoo.
me@machine ~/Site $ rake migrate
(in /home/me/Site)
/usr/lib/ruby/gems/1.8/gems/activerecord-1.14.3/lib/active_record/validations.rb:334:
warning: `*'' interpreted as argument prefix
2006 May 11
7
Rails in Dr. Dobbs Journal ?
Hi,
I''ve read that Dr. Dobbs Journal''s last issue has a cover article about
Rails titled "Ruby On Rails - Java''s Successor?". Can''t find anything
about it in http://www.ddj.com
Does someone have the paper edition and can confirm that, and tell
how the article looks like, and so on.
Thanks,
-- Jean-Fran?ois.
--
? la renverse.
2006 Aug 04
8
Demo in rails2.pdf of add_price migration, PostgreSQL 8.1.4
People,
I''m looking at the migrate example on p 74 of the rails2.pdf
It''s a simple example of using a migration to add a column to
the products table.
Here is a copy of the migration file named 002_add_price.rb
after I generated and then edited it:
class AddPrice < ActiveRecord::Migration
def self.up
add_column :products, :price, :decimal, :precision => 8, :scale
2006 Aug 10
7
mongrel stops responding after period of no use
I just moved from apache2/fcgi to apache2.2/mongrel and everything
seems to work great except for 2 issues, one being major and one
minor.
the major issue i am experiencing is that after a period of time where
my rails apps are not used, typically overnight, the mongrel processes
become unresponsive. I currently have 3 apps running behind an
apache2.2 proxy. every morning when i come in to
2006 Aug 09
6
Stack level too deep with actionmailer
HI,
Anytime I try to send emails with actionmailer I get a stack level too
deep SystemStackError. There were several other posts related to stack
overflows, but none of them invovled actionmailer. I''m using some
plugins acts_as_taggable, acts_as_ferret, rails 1.1.4, actionmailer
1.2.3. Here is my full stack trace.
Any ideas?
2008 Oct 02
1
acts_as_taggable_on environment issues
Like most people, I''ve got two machines: one for development and one
for production. I''ve done everything I can to make sure the ruby/rails
environments are the same, but of course they''re not identical (I''ll
get into that in a moment). The error that I''m getting happens when I
call a method in a background task controller on the production
machine; I
2006 Jul 24
1
date_select and ActiveRecord find()
If I pass a date through date_select to a controller, can a Active
Record object be found based on this date that is passed? Here is
what my log says:
ArgumentError (Unknown key(s): publication_date(2i),
publication_date(3i), publication_date(1i)):
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/core_ext/hash/keys.rb:48:in
`assert_valid_keys''
2006 Mar 17
0
Installed Gems on godaddy.com
Hi, is there a core list of gems that one needs to install in a production
environment? Anyways, here''s a current list of installed gems on
godaddy.com:
Gems *actionmailer 1.0.1* [www] <http://www.rubyonrails.org/> - depends on
actionpack <http://www.situationman.com/_h_admin_/gems.html#actionpack>.
Service
layer for easy email delivery and testing.
*actionmailer 1.1.5*
2006 Mar 22
1
has_many :addresses, :as => :addressable
I just got the Rails Recipies and I''m looking the Recipe 17.
class Person < ActiveRecord::Base
has_many :addresses, :as => :addressable
end
class Company < ActiveRecord::Base
has_many :addresses, :as => :addressable
end
class Address < ActiveRecord::Base
belongs_to :addressable, :polymorphic => true
end
At the beggining I had some problems because
2009 May 24
3
index.erb vs rhtml
I am a total Ruby/RoR n00b having just started reading the ''Ruby on
Rails Bible'' book two days ago. I''ve been trying to work out through
the introductory ''Your first ruby on rails application'' section, but
I''ve run into problems already!
The book goes on about creating the view templates and naming them
with the *.html.erb extension, but I get
2010 Apr 15
1
Problems with rake
I receive an error when I try to create or setup database using rake
command. Rake is installed.
Error: bash: /opt/local/bin/rake: /opt/local/bin/ruby: bad
interpreter: No such file or directory. Is it not in the path but how
come I can to gem list show the gems?
Please help
gem list
*** LOCAL GEMS ***
actionmailer (2.3.5, 2.2.2, 1.3.6)
actionpack (2.3.5, 2.2.2, 1.13.6)
actionwebservice
2006 Aug 04
0
How to make prefix_sessions recognizable?
Hello,
i must use prefix to each of my tables for my project right now. Now i''m
facing this session stored in table problem.
i don''t use rake db:sessions:create, but i use script/generate migration
create_myproject_sessions
then
create_table :myproject_sessions do |t|
t.column :myproject_session_id, :string
t.column :data, :text
t.column updated_at, :datetime
end
then
2006 Jul 03
0
Mysql configuration is slowing me down
Hi all,
I have a strange configuration problem
I ordered Debian VPS and installed Rails with all the necessary
components with and deploying a dating site. But this is my first system
admin work as well.
I was surfing site I develop and when it performs so good on my local
computer it is having problems on my VPS.
Let my production log explain it
Completed in 0.79161 (1 reqs/sec) |
2006 Apr 05
6
rake freeze_gems errors
I''m having problems trying to freeze local rails gem to my app with:
rake freeze_gems
On OSX 10.4.6 i get the following error:
Illformed requirement [=#<Gem::Specification name=rails version=1.1.0>]
This is the full output:
Freezing to the gems for Rails 1.1.0
rm -rf vendor/rails
mkdir -p vendor/rails
cd vendor/rails
Unpacked gem: ''activesupport-1.3.0''
mv
2008 Jun 25
4
Error with mongrel_rails start
When I make an empty Rails web application, and go through the steps
to create/include a database, and scaffold, mongrel_rails start (or
ruby script/server) works just fine. However, I attempted this with a
pre-existing web app and I got some errors.
First, I gathered the app''s folder (checked the contents, it has all
the folders plus one extra: components) and placed it under ruby/
2007 Feb 02
3
rails command version pegging?
Hello,
Is it possible to declare the version of Rails used with the seminal
"rails /path/to/my_app" command?
For example, I now have 1.2.1 and 1.1.6 installed on my machine. If I
run "rails my_app" I get 1.2.1 produced skeleton code. Is there a way
to get 1.1.6 results?
Regards,
Andy Koch
--~--~---------~--~----~------------~-------~--~----~
You received this
2006 Jul 25
7
Problem running rake db:migrate
I''m having a great deal of trouble getting rake to run migrations on our
staging server. Everything works fine on my dev box, but trying to run the
following on staging results in errors.
-----
> rake db:migrate
(in /var/www/apps/acadtech2/app)
rake aborted!
Don''t know how to build task ''db:migrate''
(See full trace by running task with --trace)
----
The
2006 May 01
0
overloop when creatin an app
Hi guys!
I don''t know if this is normal but when I create a new app with ''rails
application'' command, the rails directory within vendor directory is
pointing to the directory itself. It was before installing login engine.
What to do with this?
lrwxrwxrwx 1 root root 29 2006-05-01 21:45 actionmailer ->
/usr/share/rails/actionmailer
lrwxrwxrwx 1 root root 27
2006 May 01
0
directory overloop when creatin an app
Hi guys!
I don''t know if this is normal but when I create a new app with ''rails
application'' command, the rails directory within vendor directory is
pointing to the directory itself. It was before installing login engine.
What to do with this?
lrwxrwxrwx 1 root root 29 2006-05-01 21:45 actionmailer ->
/usr/share/rails/actionmailer
lrwxrwxrwx 1 root root 27