Navigation Menu

Skip to content

Commit

Permalink
remove lock file from repo and make it work on allrubies
Browse files Browse the repository at this point in the history
  • Loading branch information
duritong committed Feb 28, 2015
1 parent b1f1466 commit 486007c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 73 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -10,6 +10,7 @@ doc

# bundler
.bundle
Gemfile.lock

# jeweler generated
pkg
Expand Down
22 changes: 17 additions & 5 deletions Gemfile
Expand Up @@ -3,15 +3,27 @@ source "http://rubygems.org"
# Example:
# gem "activesupport", ">= 2.3.5"

gem "moneta", "~> 0.7.20"
gem "highline", "~> 1.6.2"
if RUBY_VERSION.to_f > 1.8
gem "moneta"
gem "highline"
else
gem "moneta", "~> 0.7.20"
gem "highline", "~> 1.6.2"
end

gem "bcrypt"

# Add dependencies to develop your gem here.
# Include everything needed to run rake, tests, features, etc.
group :development do
gem "rspec", "~> 2.4"
gem "rdoc", "~> 3.8"
gem "mocha"
gem "jeweler", "~> 1.6"
if RUBY_VERSION.to_f > 1.8
gem "rspec"
gem "rdoc"
gem "jeweler"
else
gem "rspec", "~> 2.4"
gem "rdoc", "~> 3.8"
gem "jeweler", "~> 1.6"
end
end
68 changes: 0 additions & 68 deletions Gemfile.lock

This file was deleted.

0 comments on commit 486007c

Please sign in to comment.