search for: bson_ext

Displaying 5 results from an estimated 5 matches for "bson_ext".

Did you mean: bio_next
2013 Feb 26
5
Can't upgrade to 4 beta 1
I had to update several gems for Bundler to accept it but now I''m stuck: bundle update rails devise knockoutjs-rails sass-rails coffee-rails devise-encryptable oojs Fetching gem metadata from https://rubygems.org/....... Fetching gem metadata from https://rubygems.org/.. Resolving dependencies... Bundler could not find compatible versions for gem "railties": In Gemfile:
2012 Jan 22
3
Using Mongoid with ActiveRecord
I''m trying to use mongodb and postgresql simultaneously with Rails 3.1. I believe I have everything set up correctly. What I''m interested in knowing is how to get rails to flip-flop back- and-forth between mongoid and activerecord. For example, if I want to generate an ActiveRecord model after using mongoid, rails automatically defaults to the Mongoid gem. > rails g model
2012 Mar 20
0
Setting cache_classes to false results in blank pages
...the box app "rails new testapp" with one generated scaffold seems to work ok. Here is the gemfile: --- source ''https://rubygems.org'' gem ''rails'', ''3.2.2'' gem ''mongoid'', ''>= 2.4'' gem ''bson_ext'', ''>= 1.5'' gem ''mongoid_rails_migrations'', ''>= 0.0.13'' group :assets do gem ''sass-rails'', ''>= 3.2.3'' gem ''coffee-rails'', ''>= 3.2.1'' gem '...
2012 Jun 14
1
Cucumber/RSpec ::: Capybara? Webrat What am I using??
...3.0.0) actionpack (3.2.5, 3.2.1, 3.0.0) activemodel (3.2.5, 3.2.1, 3.0.0) activerecord (3.2.5, 3.2.1, 3.0.0) activeresource (3.2.5, 3.2.1, 3.0.0) activesupport (3.2.5, 3.2.1, 3.0.0) addressable (2.2.8) ancestry (1.2.5) archive-tar-minitar (0.5.2) arel (3.0.2, 1.0.1) bcrypt-ruby (3.0.1) bson (1.5.2) bson_ext (1.5.2) builder (3.0.0, 2.1.2) bundler (1.1.4, 1.0.0) capistrano (2.12.0) capybara (1.1.2) carrierwave (0.6.2) carrierwave-mongoid (0.2.0) childprocess (0.3.2) chronic (0.6.7) chunky_png (1.2.5) cleditor_rails (0.0.3) coffee-rails (3.2.2) coffee-script (2.2.0) coffee-script-source (1.3.3, 1.2.0) co...
2011 Mar 16
19
Uninitialized constant Files::Magick -still around
Hi there, I''m solving the problem about the plugin Magick. In my app in Gemfile I''ve follwoing: require ''rubygems'' require ''mongo'' require ''RMagick'' include Magick and in a model Files: class Files def self.save(upload) ... img = Magick::Image.read(''public/data/nature6.jpg'').first end end