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 6226911
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T09:07:13+00:00 2026-05-24T09:07:13+00:00

With Padrino, I created a project with Shoulda as a testing framework. I then

  • 0

With Padrino, I created a project with Shoulda as a testing framework. I then backpedaled and removed Shoulda and added RSpec. However, after adding spec/spec.rake and spec/spec_helper.rb, I’m having trouble running the tests.

$ padrino rake spec
=> Executing Rake spec ...
/home/ethan/.rvm/rubies/ruby-1.9.2-head/bin/ruby -S bundle exec rspec -fs --color ./spec/models/user_spec.rb
bundler: command not found: rspec
Install missing gem binaries with `bundle install`
rake aborted!
ruby -S bundle exec rspec -fs --color ./spec/models/user_spec.rb failed

Tasks: TOP => spec => spec:models
(See full trace by running task with --trace)

Gemfile:

source :rubygems

# Server requirements
# gem 'thin' or mongrel
gem 'thin'

# Project requirements
gem 'rake'
gem 'rack-flash'

# Component requirements
gem 'haml'
gem 'mongo_mapper'
gem 'bson_ext', :require => "mongo"
gem 'canable'
gem 'httparty'
gem 'maruku'

# Test requirements
gem 'rspec', :group => "test"
gem 'rack-test', :require => "rack/test", :group => "test"


# Padrino
gem 'padrino', '0.10.0'
# Padrino EDGE
# gem 'padrino', :git => 'git://github.com/padrino/padrino-framework.git'
#
# Individual GEMS
# gem 'padrino-core', '0.10.0'
# gem 'padrino-admin', '0.10.0'
# gem 'padrino-cache', '0.10.0'
# gem 'padrino-core', '0.10.0'
# gem 'padrino-gen', '0.10.0'
# gem 'padrino-helpers', '0.10.0'
# gem 'padrino-mailer', '0.10.0'

Gemfile.lock

GEM
  remote: http://rubygems.org/
  specs:
    activemodel (3.0.9)
      activesupport (= 3.0.9)
      builder (~> 2.1.2)
      i18n (~> 0.5.0)
    activesupport (3.0.9)
    bson (1.3.1)
    bson_ext (1.3.1)
    builder (2.1.2)
    canable (0.2.0)
    crack (0.1.8)
    daemons (1.1.4)
    diff-lcs (1.1.2)
    eventmachine (0.12.10)
    grit (2.4.1)
      diff-lcs (~> 1.1)
      mime-types (~> 1.15)
    haml (3.1.2)
    http_router (0.8.11)
      rack (>= 1.0.0)
      url_mount (~> 0.2.1)
    httparty (0.7.8)
      crack (= 0.1.8)
    i18n (0.5.0)
    mail (2.3.0)
      i18n (>= 0.4.0)
      mime-types (~> 1.16)
      treetop (~> 1.4.8)
    maruku (0.6.0)
      syntax (>= 1.0.0)
    mime-types (1.16)
    mongo (1.3.1)
      bson (>= 1.3.1)
    mongo_mapper (0.9.1)
      activemodel (~> 3.0)
      activesupport (~> 3.0)
      plucky (~> 0.3.8)
    padrino (0.10.0)
      padrino-admin (= 0.10.0)
      padrino-cache (= 0.10.0)
      padrino-core (= 0.10.0)
      padrino-gen (= 0.10.0)
      padrino-helpers (= 0.10.0)
      padrino-mailer (= 0.10.0)
    padrino-admin (0.10.0)
      padrino-core (= 0.10.0)
      padrino-helpers (= 0.10.0)
    padrino-cache (0.10.0)
      padrino-core (= 0.10.0)
    padrino-core (0.10.0)
      activesupport (~> 3.0.0)
      http_router (~> 0.8.10)
      sinatra (~> 1.2.6)
      thor (~> 0.14.3)
      tilt (~> 1.3.0)
    padrino-gen (0.10.0)
      bundler (~> 1.0.2)
      grit (~> 2.4.1)
      padrino-core (= 0.10.0)
    padrino-helpers (0.10.0)
      i18n (~> 0.5.0)
      padrino-core (= 0.10.0)
    padrino-mailer (0.10.0)
      mail (~> 2.3.0)
      padrino-core (= 0.10.0)
    plucky (0.3.8)
      mongo (~> 1.3)
    polyglot (0.3.2)
    rack (1.3.2)
    rack-flash (0.1.2)
      rack
    rack-test (0.6.1)
      rack (>= 1.0)
    rake (0.9.2)
    rspec (2.6.0)
      rspec-core (~> 2.6.0)
      rspec-expectations (~> 2.6.0)
      rspec-mocks (~> 2.6.0)
    rspec-core (2.6.4)
    rspec-expectations (2.6.0)
      diff-lcs (~> 1.1.2)
    rspec-mocks (2.6.0)
    sinatra (1.2.6)
      rack (~> 1.1)
      tilt (< 2.0, >= 1.2.2)
    syntax (1.0.0)
    thin (1.2.11)
      daemons (>= 1.0.9)
      eventmachine (>= 0.12.6)
      rack (>= 1.0.0)
    thor (0.14.6)
    tilt (1.3.2)
    treetop (1.4.10)
      polyglot
      polyglot (>= 0.3.1)
    url_mount (0.2.1)
      rack

PLATFORMS
  ruby

DEPENDENCIES
  bson_ext
  canable
  haml
  httparty
  maruku
  mongo_mapper
  padrino (= 0.10.0)
  rack-flash
  rack-test
  rake
  rspec
  thin

Entire project on Github

  • 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-24T09:07:13+00:00Added an answer on May 24, 2026 at 9:07 am

    I emptied my gemset (rvm gemset empty) then re-Bundled, and everything went well. Odd.

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

Sidebar

Related Questions

I have a padrino project. I've created a sub app called users. I also
Hello I am trying to setup a Padrino project using DataMapper and MySQL on
I am actually generating some xml from haml template, using Padrino Framework. There are
I have been looking at Padrino for a project I am working on, and
I am using Padrino and when I try to specify my application.sass file I
After I deploy an app to Heroku, I run migration scripts and get this
I have an application that in uploading files to GridFS via MongoMapper/Joint in Padrino.
I have a padrino install that is using datamapper and logging queries to a
In a Haml based Padrino solution I have an application.haml like this: !!! %html
How can I make padrino-admin page generator produce beautiful custom pages? By default padrino-admin

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.