Skip to content

Instantly share code, notes, and snippets.

@levinalex
Created February 20, 2011 00:43
Show Gist options
  • Save levinalex/835555 to your computer and use it in GitHub Desktop.
Save levinalex/835555 to your computer and use it in GitHub Desktop.
error.log
$ git push
-----> Heroku receiving push
-----> Rack app detected
-----> Gemfile detected, running Bundler version 1.0.7
Unresolved dependencies detected; Installing...
Using --without development:test
fatal: Not a git repository
fatal: Not a git repository
fatal: Not a git repository
You have modified your Gemfile in development but did not check
the resulting snapshot (Gemfile.lock) into version control
You have added to the Gemfile:
* source: source at /disk1/tmp/build_3abzl4byu44kp
You have deleted from the Gemfile:
* source: source at .
You have changed in the Gemfile:
* dee from `source at /disk1/tmp/build_3abzl4byu44kp` to `no specified source`
FAILED: http://docs.heroku.com/bundler
! Heroku push rejected, failed to install gems via Bundler
source :rubygems
gemspec
PATH
remote: .
specs:
mygem (0.0.1)
haml
redis
sinatra
GEM
remote: http://rubygems.org/
specs:
diff-lcs (1.1.2)
haml (3.0.25)
rack (1.2.1)
rack-test (0.5.7)
rack (>= 1.0)
redis (2.1.1)
rspec (2.5.0)
rspec-core (~> 2.5.0)
rspec-expectations (~> 2.5.0)
rspec-mocks (~> 2.5.0)
rspec-core (2.5.1)
rspec-expectations (2.5.0)
diff-lcs (~> 1.1.2)
rspec-mocks (2.5.0)
sinatra (1.1.2)
rack (~> 1.1)
tilt (~> 1.2)
tilt (1.2.1)
PLATFORMS
ruby
DEPENDENCIES
mygem!
haml
rack-test
redis
rspec
sinatra
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "mygem/version"
Gem::Specification.new do |s|
s.name = "dee"
s.version = Mygem::VERSION
s.add_dependency "sinatra"
s.add_dependency "redis"
s.add_dependency "haml"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment