Active Support is the Ruby on Rails component responsible for providing Ruby language extensions, utilities, and other transversal stuff.
0
votes
0answers
21 views
rails server throws `require': cannot load such file — bigdecimal/util (LoadError)
In Rails 3.2.12, when I run rails s it throws
/usr/local/share/gems/gems/activesupport-3.2.12/lib/active_support/dependencies.rb:251:in `require': cannot load such file -- bigdecimal/util (LoadError)
...
2
votes
1answer
58 views
Confusion about ways to use JSON in ruby sinatra application
I'm making a Ruby Sinatra application that uses mongomapper and most of my responses will be in the JSON form.
Confusion
Now I've come across a number of different things that have to do with JSON.
...
0
votes
1answer
36 views
ActiveSupport::TimeZone not recognized in Rspec tests
I am using ActiveSupport::TimeZone to set the time zone on a location based on the zip code.
def set_time_zone
self.time_zone = ActiveSupport::TimeZone.find_by_zipcode(self.zip)
end
This works ...
-2
votes
0answers
21 views
/rails/activesupport/lib/active_support/memoizable.rb:32: [BUG] Segmentation fault
Very Urgent!!!
I am getting Segmentation fault while running the migrations. Following is the error for your reference.
rake db:migrate RAILS_ENV=production
(in /data/first/releases/20121211170552)
...
2
votes
2answers
29 views
What's the differences btw const_get and qualified_const_get?
There is a series of methods, i.e., const_defined?, const_get, or const_set, in standard ruby library.
const_defined?,
const_get,
const_set
And also, in the Active Support Core Extensions of ...
3
votes
1answer
53 views
HttpParty::Response and try(:parsed_response) weird behavior
I've tried to use ActiveSupport's (2.3-stable) try() on an instance of HttpParty::Response. I've got a pretty strange behavior:
> ro.parsed_response
{"error"=>"RecordInvalid", ...
0
votes
1answer
35 views
Rails 3 ActiveResource not escaping unicode in xml when sending request
We recently moved to rails 3.2.13. We use ActiveResource to call a web service. ActiveResoure will generate the xml payload. We noticed that the new xml doesn't escape unicode character. For ...
0
votes
1answer
65 views
ActiveSupport::TimeZone list of strings for offset
I've followed Ryan Bate's railscast #106 http://railscasts.com/episodes/106-time-zones-revised which adds a time_zone string to the User model. The string is from the dropdown:
= f.time_zone_select ...
7
votes
2answers
228 views
Ruby not finding new version of OpenSSL (not setting OpenSSL::OPEN_SSL_VERSION as expected)
Where and when does OpenSSL::OPENSSL_VERSION_NUMBER get set? And why isn't it getting set to the latest OpenSSL that I've just installed?
First the error(s):
$ gem install activesupport -v '3.2.13'
...
2
votes
1answer
97 views
Testing a concern / module that uses ActiveRecord
SCENARIO
I have extracted a concern called Taggable. It's a module that allows any model to support tagging. I have included this concern/module into models like 'User', 'Location', 'Places', ...
1
vote
2answers
50 views
Styling the date fields of a Rails date_select
In Rails' forms, date select drop-downs are easy:
<%= f.label :my_date %>
<%= f.date_select :my_date %>
Then I get 3 select drop-downs for the year, month and day. Is there an easy way ...
1
vote
0answers
37 views
ActiveSupport::Dependencies.autoload_paths: How to eager load?
I'm using ActiveSupport in a sinatra project, and following the advice of some peers I've been using ActiveSupport::Dependencies.autoload_paths to ease the loading of my classes in development. Now ...
-1
votes
2answers
440 views
Bundler could not find compatible versions for gem “activesupport”
I migrated to 3.2.13 version of rails and I am getting this error, how do I get rid of this?
Fetching gem metadata from https://rubygems.org/.......
Fetching gem metadata from https://rubygems.org/..
...
4
votes
2answers
144 views
Rails: execution expired on time_zone_select
The following exception comes up intermittently:
An ActionView::Template::Error occurred
execution expired
...
0
votes
2answers
127 views
ENV variables not being read sinatra
So i am trying to serve my static assets from Amazon s3 locally and for Heroku, I was loading a yml file but that doesn't work as Heroku doesn't accept symlinks.
So i was given the suggestion to use ...
2
votes
1answer
303 views
uninitialized constant ActiveSupport::Concern (NameError)
I'm using rbenv, Bundler 1.0.21, rubygems 1.8.1, Ruby v1.8.7, rails 2.3.15 and rails 3.0.18. I'm in the process of migrating my rails app from 2.3.15 to rails 3.0.18. When I switch between these ...
1
vote
0answers
128 views
Encoding the params of an ajax request in rails active support raises Encoding::CompatibilityError
I have an application running ruby 1.9.2p320 and rails 3.0.20 (and I can not update this!)
Sending common chars and special chars (like ä ü ö) via normal POST requests works fine.
Sending chars from ...
-2
votes
1answer
93 views
errors with rake db:create command in ruby on rails
when I have typed command rake db:create, following errors were displayed on terminal
rake aborted!
cannot load such file -- active_support/core_ext/class/inheritable_attributes
...
1
vote
1answer
91 views
Rails ActiveSuppport:Concern and Private Methods
This is a great idea: http://37signals.com/svn/posts/3372-put-chubby-models-on-a-diet-with-concerns
And it's also a good idea to make very small methods that are not part of a public API. Without ...
1
vote
0answers
187 views
use of extend ActiveSupport::Concern
I'm working through CodeSchool's RubyBits and I've come to an exercise I'm just not comprehending: "Make sure the AtariLibrary class includes only the LibraryUtils module and let ...
0
votes
1answer
83 views
Unable to activate actionpack-3.2.9, because activesupport-3.2.11 conflicts with activesupport (= 3.2.9) (Gem::LoadError)
Unable to activate actionpack-3.2.9, because activesupport-3.2.11 conflicts with activesupport (= 3.2.9) (Gem::LoadError)
Anything to do with this?
Unable to activate feedzirra-0.1.3, because ...
0
votes
3answers
72 views
ActiveRecord validation for nil
I am trying to write an active record validation that allows any string but does not allow nil.
The problem with validates_presences_of is that it returns false for "" or " " which I want to consider ...
9
votes
3answers
231 views
rails activesupport notifications - wrong db runtime value
I'm trying to log requests for my REST API application. I'm using rails notifications for this , like here http://railscasts.com/episodes/249-notifications-in-rails-3
I can't understand how to solve ...
1
vote
3answers
71 views
Differences between times in Ruby
I am trying to figure out the difference between two times within a current timezone. I'm trying to figure out whether to call a support telephone number between two times. I.e., I am using the ...
0
votes
1answer
64 views
ActiveSupport Notification - Printing to console or log to debug?
I want to trigger a creation of a new object when an object of my FbPlace class (mongo document) is updated. FbPlace is only updated through a script in the console or rake task.
Is it possible to ...
1
vote
1answer
437 views
How to Convert TZInfo identifier to Rails TimeZone name/key
How do you convert js values received as TZInfo identifiers to Rails TimeZone name/key?
FROM: "America/New_York" returned from JavaScript TZinfo detection
TO: "Eastern Time (US & Canada)" ...
2
votes
3answers
78 views
Clean way to create a hash with 3 levels of nesting which creates levels if they don't exist
This is what I do now
h = Hash.new { |h1, k1| h1[k1] = Hash.new { |h2, k2| h2[k2] = {} } }
Although it works, it looks kind of ambiguous. Maybe there is a better way to do the same thing?
1
vote
0answers
219 views
RoR undefined method `attr_accessible' after any code edit
I'm implementing a great plugin I found for awarding points/badges/ranks to users based on user behaviors. It is called Merit and can be found here: https://github.com/tute/merit
I have two models: ...
3
votes
1answer
101 views
Overloading a method in an ActiveSupport::Concern
How can I have a concern that I've written like this:
module Concerns
module MyConcern
extend ActiveSupport::Concern
...
def my_concern_magic(arg0,arg1)
#exciting stuff here
...
1
vote
1answer
55 views
Uniqueness constraint not affecting fields
class User < ActiveRecord::Base
attr_accessible :username, :password
attr_accessor :username, :password
validates :username, :presence => true, :uniqueness => true
validates ...
2
votes
4answers
88 views
Capitalizing a sentence
Is there a method (perhaps in some library from Rails) or an easy way that capitalizes the first letter of a string without affecting the upper/lower case status of the rest of the string? I want to ...
0
votes
1answer
52 views
Error After Switching Rails App to Postgres - ActiveSupport::SafeBuffer
I'm new to programming and rails so please forgive any big oversights. I recently deployed a rails app to heroku and switched all environments to postgres for my db. It is up on heroku working just ...
1
vote
2answers
92 views
unable to save a model object when associations are present
In my rails application, i'm unable to save the model object when associations are present.
I'm using mongo as db.
Brief explanation:
I have a model object,
@obj1 = User.create(name: "name1")
...
2
votes
3answers
69 views
Is it considered a good practice to use ActiveSupport in non-Rails gems?
I've developed a piece of functionality as a part of big Rails project, now I want to extract it as a separate, independent of rails gem to share with community. It's my first gem and the one thing ...
0
votes
1answer
99 views
Summing an array
The code below passed tests on Ruby 1.8/1.9, but when I run these tests on Ruby 1.9.2, I'm getting no method errors for Array#sum. For example,
NoMethodError: undefined method `sum' for [3.2, 3.0, ...
1
vote
1answer
41 views
How do you convert a Date into a ActiveSupport::TimeWithZone with a particular timezone?
I have a Date object like this:
>> the_date
=> Tue, 12 Jun 2012
>> the_date.class
=> Date
And a timezone stored as a string:
>> tz = "Pacific Time (US & Canada)"
=> ...
0
votes
1answer
69 views
Use ActiveSupport's number helper in a Class Method
I have an embarrassingly basic question:
I'm working on a plain-old-ruby model that deals with money, and some of the class methods return prices which need to be formatted for display.
In the past ...
0
votes
2answers
80 views
Activesupport titlecase() with bang (.titlecase!)?
I currently have a string with customer names that I am titlecasing with:
@customer_name = @customer_name.titlecase
But this seems a bit long-winded. When I try to do:
@customer_name.titlecase!
...
1
vote
1answer
73 views
What should I do to make this rails app testable?
I have an up to date rails application, using rails 3.2 with mongoid 2. I was unable to start testing by typing rake. The exception thrown is (sanitized):
rake test ...
7
votes
3answers
209 views
Ruby weirdness: x == y && [x, y].uniq == [x, y]
I have an two-element array of ActiveRecord objects, slots_to_import. These objects have begin_at columns, and thus attributes. I was trying to get objects that have unique begin_at values. Alas, ...
0
votes
1answer
110 views
wash_out parse failures: SOAP errors instead of HTML errors
So, when you use the wash_out gem in Rails, and a client sends bad XML, the response is like:
<html>…
<body>
<h1>REXML::ParseException</h1>
…
Instead of a correct ...
3
votes
1answer
217 views
What should I not include in the `included do … end` block?
I am using Ruby on Rails 3.2.2. I am implementing a module and including that in a my class by using the RoR ActiveSupport::Concern feature. It makes available the included do ... end block making ...
0
votes
1answer
28 views
Time in memory and Time in DB: bug or feature?
I found recently this strange behaviour concerning instanciating a Time object (like for instance, using Time.now) and then using its value for arithmetic operations that in the end will return an ...
2
votes
1answer
114 views
ActiveSupport::Callbacks on class methods
Is it possible to use ActiveSupport::Callbacks on class methods? More specifically, in the module below, where would you put include ActiveSupport::Callbacks to make define_callbacks and run_callbacks ...
0
votes
1answer
309 views
ActiveSupport::Concern vs append_features
There is an article on ActiveSupport::Concern hooks. Here's a working implementation in Rails:
module ActionController
class Base < Metal
include AbstractController::Layouts
end
end
...
1
vote
0answers
408 views
Rails 3 “Could not find activesupport-3.2.3 in any of the sources”
Helo. I recently reformatted my Mac to a fresh install of Lion, and then upgraded to Mountain Lion. I installed homebrew and installed ruby and put usr/local/bin before usr/bin in my path. I used gem ...
1
vote
1answer
70 views
How/Where to override method defined in ActiveSupport CoreExtensions String
I want to override the behavior of ActiveSupport::CoreExtensions::String::Inflections.foreign_key in Rails 3 not sure where how to do it properly.
In Rails 2.3 I created a plugin that opened the ...
0
votes
0answers
27 views
Rails ActiveSupport Undo simple_format
I am currently writing a small app, that lets me edit text snippets and store them in a file (no database, no ORM).
The text snippets are not displayed in a Input-Field or a Textarea. They are shown ...
2
votes
0answers
98 views
why is Time.zone.parse so much slower than DateTime.parse?
On my system(*), Time.zone#parse is almost 3.5x slower than DateTime#parse.
Since DateTime.parse already knows how to handle time zones, under what circumstances would you want to use ...
0
votes
1answer
143 views
Rails. wrong number of arguments error when trying to set beginning_of_week
I followed this Railscast: http://railscasts.com/episodes/213-calendars-revised
It seems that not a lot of people are getting an error but I get ArgumentError: wrong number of arguments (1 for 0) for ...




