Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7502833
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T21:00:41+00:00 2026-05-29T21:00:41+00:00

I took a look about this problem within the list of question but nothing

  • 0

I took a look about this problem within the list of question but nothing helped.
This is my first question in stackoverflow so please accept my apologies in case I do something wrong. Also I still have a lot of english to improve.

I’m installing Spree following the github instructions

$ gem install spree
$ rails new my_store
$ spree install my_store

when I get this message

…

Admin Password [spree123] 
gemfile  spree
gemfile  spree_usa_epay
gemfile  spree_skrill
     run  bundle install from "./my_store"
git://github.com/spree/spree_usa_epay.git (at 0cb57b4) is not checked out. Please run `bundle install`
precompiling  assets
git://github.com/spree/spree_usa_epay.git (at 0cb57b4) is not checked out. Please run `bundle install`

…
Well, as the guide suggests, in case of circular dependency issues do:

$ gem install spree_cmd

$spree install my_store -A

gemfile  spree
gemfile  spree_usa_epay
gemfile  spree_skrill
     run  bundle install from "./my_store"
git://github.com/spree/spree_usa_epay.git (at 0cb57b4) is not checked out. Please run `bundle install`
precompiling  assets
git://github.com/spree/spree_usa_epay.git (at 0cb57b4) is not checked out. Please run `bundle install`

I changed directory to the app and run the command:

$cd my_store

$bundle install 

and I get the following error

Bundler could not find compatible versions for gem "rails":
In Gemfile:
spree_usa_epay (>= 0) ruby depends on
  rails (<= 3.1.3, >= 3.1.1) ruby

rails (3.2.1)

after this I changed the gem file to work with rails 3.1.3 and coffeescript gems and repeat the whole process again and I get this.

Users/Snake/.rvm/gems/ruby-1.9.3-p0/gems/activerecord-  3.1.3/lib/active_record/base.rb:1088:in `method_missing': undefined method  `mass_assignment_sanitizer=' for ActiveRecord::Base:Class (NoMethodError)
from /Users/Snake/.rvm/gems/ruby-1.9.3-p0/gems/activerecord-3.1.3/lib/active_record/railtie.rb:59:in `block (3 levels) in <class:Railtie>'

It think it might be something with version of rails a spree but I don’t know were to start.

Does anybody had this issue before?

I running Mac OS X 10.5.8

rails 3.2.1

ruby 1.9.3p0 (2011-10-30 revision 33570) [i386-darwin9.8.0]

ImageMagick @6.7.4-6_0+q16

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T21:00:42+00:00Added an answer on May 29, 2026 at 9:00 pm

    As @Anatoly Ruchka suggested the problem was using rails 3.2.1, so I switched to 3.1.3.

    This is what I did, I found a post of @vonconrad where he explain how to create a rail project without touch the installation.

    1) I create a directory folder for my project:

    $mkdir old_rails313
    $cd old_rails313
    $touch gemfile
    $nano gemfile
    

    2)
    I pasted a gemfile definition specifying as you mention the version of rails I want, so it looks like this

    source 'http://rubygems.org'
    gem 'rails', '3.1.3'
    gem 'sqlite3'
    group :assets do
      gem 'sass-rails',   '~> 3.1.5'
      gem 'coffee-rails', '~> 3.1.1'
      gem 'uglifier', '>= 1.0.3'
    end
    gem 'jquery-rails'
    gem "rspec-rails", ">= 2.8.0.rc1", :group => [:development, :test]
    gem "factory_girl_rails", ">= 1.4.0", :group => :test
    gem "cucumber-rails", ">= 1.2.0", :group => :test
    gem "capybara", ">= 1.1.2", :group => :test
    gem "database_cleaner", ">= 0.7.0", :group => :test
    gem "launchy", ">= 2.0.5", :group => :test
    #gem "devise", ">= 1.5.0"
    gem 'spree','1.0.0'
    

    3) then I run

    bundle install
    bundle exec rails new .
    rails g spree:install
    rails s
    

    After installing I’ve got a conflict with the gem ‘spree’,’1.0.0′, so I comment it out.

    Also I’ve got a warning but it works:

    [DEPRECATION WARNING] Nested I18n namespace lookup under "activerecord.attributes.spree/order" is no longer supported
    

    Thanks a lot

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know this question has been asked before, and I took a look at
I took a look at this answer and it goes in part to solving
I took a look in the developer's console and saw for the first time
I took a look at surveyor and smerf but it looks like smerf is
I've been working on this application but have come across a problem that I
Rewriting this question to be a little more succient. My problem is that I
This isnt a homework question. I took data structures at a Community College and
so today i took a look at my Mercury Mail Server and noticed it
So I took a look at the x86 assembly language; All the commands are
Just wondering if there is a Python MTA . I took a look at

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.