-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Gem won't install. Says requires spork > 1.0rc0!? #15
Comments
Could you please be more specific? I've tried to reproduce this one by creating a Rails app and adding guard-spork and spork-rails to Gemfile, but I haven't got any errors. |
Well here is my gemfile, other than that what else would you like to know? It's a Rails 3.2.11 app on Ruby 1.9.3
|
OK, I'll try to reproduce this bug. In the meantime - can you remove spork-rails, spork and guard-spork manually and run bundle install? |
I was unable to reproduce your problem with the given gemset. I think there's a problem in your environment, consider using a fresh gemset. |
Same issue. This is how you reproduce it. First, use spork and guard-spork like so:
If you, however, want to update your Gemfile to use spork-rails after that, you would replace the above lines with something like this.
You can resolve this by specifying the version of spork in your Gemfile.
Running
|
Yes. Exactly. Those were the steps that led to my issue as well. Joshua Lippiner On Wednesday, March 20, 2013 at 7:33 AM, Hrvoje Simic wrote:
|
+1, I upgraded from spork to spork-rails and it is complaining |
I am having the same error while installing spork-rails on rails 4 Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/..
Resolving dependencies...
Bundler could not find compatible versions for gem "spork":
In Gemfile:
spork-rails (>= 0) ruby depends on
spork (>= 1.0rc0) ruby
guard-spork (>= 0) ruby depends on
spork (0.9.2)
Then i deleted "spork-rails" from the gemfile and added only "spork", it installed correctly, but i couldn't run spork server, similar error as described here :sporkrb/spork#223 source 'https://rubygems.org'
ruby '2.0.0'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.0'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
# Use ActiveModel has_secure_password
gem 'bcrypt-ruby', '~> 3.0.0'
# Faker, a port of Data::Faker from Perl, is used to easily generate
# fake data: names, addresses, phone numbers, etc.
gem "faker", "~> 1.2.0"
# Twitter's Bootstrap, converted to Sass and ready to drop into Rails or Compass
gem "bootstrap-sass", "~> 2.3.2.1"
# will_paginate provides a simple API for performing paginated queries with
# Active Record, DataMapper and Sequel, and includes helpers for rendering
# pagination links in Rails, Sinatra and Merb web apps.
gem "will_paginate", "~> 3.0.4"
# Hooks into will_paginate to format the html to match Twitter Bootstrap styling.
gem "bootstrap-will_paginate", "~> 0.0.9"
# Using the multi-threaded puma app server
gem 'puma'
# Using Haml preprocessor
gem 'haml-rails'
group :test, :development do
gem 'rspec-rails'
gem 'guard-rspec'
gem 'guard-spork'
gem 'spork-rails', git: 'https://github.com/sporkrb/spork-rails.git'
gem 'childprocess'
end
group :test do
gem 'capybara'
gem 'factory_girl_rails'
gem 'cucumber-rails', require: false
gem 'database_cleaner'
gem "libnotify", "~> 0.8.1"
# gem 'launchy', '2.1.0'
# gem 'rb-fsevent', '0.9.1', :require => false
# gem 'growl', '1.0.3'
end
group :production do
gem "pg", "~> 0.16.0"
end But i ended with the same error as i started. Any thought on how to resolve the dependencies on spork gem? |
same here |
@klangfeld @FalloutX I think my fork fixed this. You may want to try. |
I've released spork-rails 4.0.0 to RubyGems. Please try updating your spork-rails bundle. |
Here what I included in my Gemfile Here is my Gem list: *** LOCAL GEMS *** actionmailer (4.1.0) |
Any thoughts?
The text was updated successfully, but these errors were encountered: