Tagged Questions
The activesupport tag has no wiki summary.
18
votes
2answers
7k views
What is mattr_accessor in a Rails module?
I couldn't really find this in Rails documentation but it seems like 'mattr_accessor' is the Module corollary for 'attr_accessor' (getter & setter) in a normal Ruby class.
Eg. in a class
class ...
10
votes
4answers
11k views
Rails ActiveSupport Time Parsing?
Rails' ActiveSupport module extends the builtin ruby Time class with a number of methods.
Notably, there is the to_formatted_s method, which lets you write Time.now.to_formatted_s(:db) to get a ...
8
votes
1answer
2k views
Use Rails 3's ActiveSupport core extensions outside rails
I'm having a problem using ActiveSupport's core extensions on a gem I am developing.
I had it working with AS 2.3.8, but as soon as I wanted to port it to 3b4, the extensions stopped working and my ...
7
votes
2answers
4k views
Convert UTC to local time in Rails 3
I'm having trouble converting a UTC Time or TimeWithZone to local time in Rails 3.
Say moment is some Time variable in UTC (e.g. moment = Time.now.utc). How do I convert moment to my time zone, ...
7
votes
3answers
2k views
How do I use ActiveSupport core extensions?
I have ActiveSupport 3.0.3 installed and Rails 3.0.3 with Ruby 1.8.7.
When I try to use 1.week.ago I get
NoMethodError: undefined method 'week' for 1:Fixnum
from (irb):2
The ...
6
votes
1answer
481 views
Can't get pluralize/singularize working with ActiveSupport::Inflector (in irb)
irb(main):001:0> require 'active_support'
=> true
irb(main):002:0> require 'active_support/inflector/inflections'
=> true
irb(main):003:0> ActiveSupport::Inflector.pluralize('test')
...
5
votes
2answers
384 views
3.days.ago, 2.hours.from_now etc without Rails?
Some book mentioned some gem to decorate numbers with #days, #megabytes, #minutes etc. Is this only in ActiveSupport, or is there a smaller gem that provides this functionality for use in (small) ...
5
votes
1answer
1k views
uninitialized constant ActiveSupport::CoreExtensions
I'm attempting to integrate jquery's datepicker with formtastic as detailed here
I've followed the directions exactly, but am getting "uninitialized constant ActiveSupport::CoreExtensions" when ...
5
votes
2answers
3k views
Rails times oddness : “x days from now”
when users sign up to one of my sites for a free trial, i set their account expiry to be "14.days.from_now". Then on the home page i show how many days they have remaining, which i get with:
...
5
votes
6answers
3k views
can't activate activesupport (>= 2.3.2, runtime), already activated activesupport-2.1.2. what does it mean?
while trying to start some old revision of an opensource rails project confronted with a cloudy error message:
"can't activate activesupport (>= 2.3.2, runtime), already activated ...
4
votes
4answers
48 views
Is this the correct interpretation of the Microsoft statement about support for IE6? [closed]
I have read the questions on Stackoverflow, and plowed through the MS web site a dozen times and it's not at all clear to me what the official statement about support for IE6 is. Here is the result ...
4
votes
2answers
2k views
Why are autoload, load_all! and require all used in active_support.rb?
I was looking at active_support.rb to try to understand the load process it uses. It uses three loading methods: load_all!, autoload and require.
Why use three different ways of loading in the same ...
4
votes
2answers
568 views
Is there a setup_class/teardown_class for Rails tests?
I need to have a setup and teardown method for some Rails tests that is class or system wide, yet I have only found a way to define a regular setup/teardown that works on a per test level.
For ...
3
votes
2answers
245 views
Active Merchant - uninitialized constant ActiveSupport::XmlMini_REXML::StringIO
I have activemerchant 1.16.0 and rails 3.0.5.
I am trying to build a basic code to communicate with PayPal's gateway using active merchant.
if credit_card.valid?
# or gateway.purchase to do both ...
3
votes
1answer
144 views
Rails / Active Support “to_sentence” deprecated
I was just getting rolling with the "to_sentence" method when I discovered that it was deprecated in rails > 2.3.8. Does anyone know why and whether it's been replaced? I find it awfully handy and ...
3
votes
1answer
1k views
Weird session issue with Rails 3 reset_session and cookies.delete(…) in the same controller action
In my logout action I'm doing this:
reset_session
cookies.delete(:rememberme)
redirect_to root_url
But the session is not being destroyed.
When I inspect the headers, the request sent to my logout ...
3
votes
3answers
2k views
How to add 10 days to current time in rails?
I tried doing something like Time.now + 5.days but that doesn't work (even though I vaguely remember seeing (and being very impressed) with being able to do something like 2.years etc...). How do I ...
3
votes
4answers
398 views
NoMethodError for time_zone_select in a form
I've set up my app exactly in line with the Railscasts Time Zone Episode 1 but when I run
<%= f.time_zone_select :time_zone, ActiveSupport::TimeZone.us_zones %>
I get this error
...
3
votes
2answers
1k views
Difference between mattr_accessor and cattr_accessor in ActiveSupport?
I can't work out from looking through the source what the difference is between the cattr_* and mattr_* methods provided in Class and Module respectively. I read this question: ...
2
votes
1answer
90 views
Why has the InstanceMethods module been deprecated?
I love ActiveSupport::Concern.
It makes it easy to add functionality to your classes, with a nice syntax.
Anyways, in Rails 3.2, the InstanceMethods module has been deprecated. If I understood ...
2
votes
2answers
536 views
The InstanceMethods module inside ActiveSupport::Concern.. Deprecation Warning
I have a portfolio website built in Sinatra. I haven't worked on it for a while, been doing some Rails. I updated my gem list yesterday by running 'gem update'. I don't know if this has anything to do ...
2
votes
1answer
104 views
Why does Rails implement the method String#starts_with? rather than alias to start_with?
Ruby on Rails has the method String#starts_with?, which is implemented in Ruby with
# File lib/active_support/core_ext/string/starts_ends_with.rb, line 22
def starts_with?(prefix)
prefix = ...
2
votes
1answer
78 views
Rails Parameterize using Transliterate Doesn't work with Arabic/Unicode Strings
I have a string containing Arabic charachters "محمود"
When I try to parameterize this string, it returns empty string ""
x = "محمود"
x.parameterize => ""
I have checked parameterize code ...
2
votes
2answers
2k views
ActiveSupport::JSON.decode does not properly handle literal line breaks
Is this the expected behavior? Note how the line break character gets lost.
ruby-1.9.2-p136 :001 > ActiveSupport::JSON.decode("{\"content\": \"active\n\nsupport\"}")
=> ...
2
votes
1answer
549 views
How can I use readability gem on Rails 3.0.x?
I'm going to use readability gem on my rails 3 app. I can't use it as advised on the github page http://github.com/sspinc/readability inside the app although it works fine on ruby console.
On the ...
2
votes
2answers
107 views
Where are the English pluralization rules for ActiveSupport defined?
I found the ActiveSupport inflector class. Where can I find the code that initializes the inflector for English?
2
votes
2answers
399 views
Missing helper file error after Rails3 conversion
I'm in the midst of converting an old Rails2.3 project to 3, and I'm running into this runtime error when I load the first page:
Missing helper file helpers/activesupport.rb
Full stacktrace here
...
2
votes
1answer
659 views
Custom Inflections not working on rails3?
I'm using Rails (3.0.1) and have the following code in initializers/inflections.rb
ActiveSupport::Inflector.inflections do |inflect|
inflect.irregular('nursery', 'nurseries')
end
From the console ...
2
votes
1answer
209 views
How to fix difference in behavior of activesupport 3.0.0 compare to 2.x?
I am using Hash#to_xml in my Sinatra application. It did work till I moved to actviesupport 3.0.0
Is there a difference in usage of activesupport in 3.0.0?
For example this works fine
gem ...
2
votes
1answer
699 views
Rails: cattr_accessor and class variables
Running this code:
module A
def self.included(klass)
klass.send(:cattr_accessor, :my_name)
end
def set_my_name_var
@@my_name = 'A' # does NOT work as expected
end
def ...
2
votes
2answers
2k views
Rails.cache.fetch, Symbols, & Memcached
I have a rails 2.3.4 app and a line that looks like:
temp = Rails.cache.fetch(:temp_id) { User.find_by_name('Temp').id }
and everything worked fine, until I decided to switch the caching layer to ...
2
votes
1answer
524 views
ActiveRecord interfering with Logger
It appears that using ActiveRecord (which requires ActiveSupport) messes with the Logger class, resulting in difficulties. This can be seen with some example code:
require 'rubygems'
#require ...
2
votes
2answers
1k views
How do you know when to use an XML parser and when to use ActiveResource?
I tried using ActiveResource to parse a web service that was more like a HTML document and I kept getting a 404 error.
Do I need to use an XML parser for this task instead of ActiveResource?
My ...
2
votes
5answers
4k views
How do you deal with the conflict between ActiveSupport::JSON and the JSON gem?
I am stumped with this problem.
ActiveSupport::JSON defines to_json on various core objects and so does the JSON gem. However, the implementation is not the same -- the ActiveSupport version takes ...
1
vote
2answers
113 views
'Rails' with Activesupport 3.2.0
I'm a new user of Ruby on rails and I try now to create my owen blog to practice this beautiful framework.
So, after I did this commande to start server I got this error , and I thought that from ...
1
vote
2answers
73 views
Rails, Canvas and Javascript - Convert image from Flickr to grayscale
For a while I'm trying to convert an image hosted on Flickr to grayscale on the fly.
I've tried the javascript/canvas solution but got caught by the same origin policy.
For this there's the ...
1
vote
2answers
281 views
Rails app works locally, crashes on Heroku
I've been trying to figure out what's going wrong from the logs, but have no idea how to fix it. Here are the snippets from the logs I'm a little confused as to how to fix. Any help would be greatly ...
1
vote
3answers
75 views
Is this a bug in the Ruby time class when doing relative date arithmetic?
Can someone tell me if this is a bug in the ruby time class?
ruby-1.8.7-p334 :021 > now = Time.now
=> Mon Aug 29 03:32:25 -0700 2011
ruby-1.8.7-p334 :022 > raise "This should not fail" if ...
1
vote
1answer
462 views
rails 3.1 inflection problem
I have a Rails 3.1 app with the following 2 models
class Listing < ActiveRecord::Base
has_many :listing_saves
end
class Team < ActiveRecord::Base
has_many :listing_saves
has_many ...
1
vote
1answer
415 views
Segmentation fault in rails / activesupport 3.1 and ruby 1.9.2
I upgraded a rails application to rails 3.1 (rc4) and now get random segmentation faults in activesupport. These faults happen when starting the application (rails s) or running tests (e.g. rake ...
1
vote
2answers
53 views
SynchronizedMemoryStore has been deprecated?
Rails is telling me:
DEPRECATION WARNING: ActiveSupport::Cache::SynchronizedMemoryStore has been deprecated in favor of ActiveSupport::Cache::MemoryStore
Googling SynchronizedMemoryStore ...
1
vote
1answer
220 views
Rails ActiveSupport::JSON causes Illegal Instruction error
I'm trying to encode something in my rails project into JSON, but it seems like any call to any JSON API in Rails causes WEBrick to throw a "Illegal Instruction" error.
My code was:
@nodes = ...
1
vote
0answers
395 views
require': no such file to load — active_support/core_ext/logger
When I do rails s or rails c.. it gives me this error. tried removing rails and reinstalling then uninstalled whole of ruby and reinstalled both rails a ruby still the same error. line 7 that is ...
1
vote
3answers
915 views
Rails: get #beginning_of_day in time zone
I have a default time zone setup for the rails application.
And an instance of the Date object.
How can I get make Date#beginning_of_day to return the beginning of the day in the specified time zone, ...
1
vote
1answer
63 views
How do I use after_save_callback_chain?
The main documentation describe it at debugging callbacks but it seems to not exists:
http://api.rubyonrails.org/classes/ActiveRecord/Callbacks.html
I've tried to use just like the example and it ...
1
vote
3answers
554 views
ActiveSupport overrides #to_json behavior
How to teach ActiveSupport to not override standard "json" gem behavior?
require "rubygems"
gem "json"
require "json"
class Time
def to_json(options = nil)
"custom string"
end
end
hash = { ...
1
vote
2answers
414 views
MissingSourceFile while requiring 'active_support/inflector/inflections'
I recently updated my application to use Bundler, but I'm having some troubles. I'm using a gem that depends on activesupport 2.3+ and I can't get it to work with Bundler. Passenger crashes while ...
1
vote
1answer
114 views
Problem with Firewatir requiring different version of activesupport
I have a script that uses Watir to retrieve information from Web pages. It works fine as a standalone script. Now I would like to create a Padrino Rake task based on it, and attempt to run the script ...
1
vote
1answer
367 views
Rails time_ago_in_words producing bad output
I thought this might be due to moving to activesupport 2.3.5 but now I believe something else must have happened.
Model has a valid rfc822 style date:
>> s.lastVisitDate
=> "Thu, 06 Jan ...
1
vote
1answer
81 views
I am in Rails 2.3.8, can I use Acivesupport 3.0?
I am trying to use the phony gem, and it says I need activesupport 3?
But I am on rails 2.3.9.
Can I just add the activesupport gem in bundler to make it work?
If so, how?