lock versions in Gemfile for release

This commit is contained in:
Reinier Balt 2013-01-27 13:18:42 +01:00
parent e499441997
commit a2499c6518
2 changed files with 60 additions and 60 deletions

60
Gemfile
View file

@ -1,41 +1,41 @@
source 'https://rubygems.org'
gem 'rails', '3.2.11'
gem 'rails', '~>3.2'
# you may comment out the database driver you will not be using.
# This will prevent a native build of the driver. Building native drivers is not
# always possible on all hosters
gem "sqlite3"
gem "mysql2"
gem "sqlite3", "~>1.3"
gem "mysql2", "~>0.3"
gem "RedCloth"
gem "formatize"
gem "sanitize"
gem "will_paginate"
gem "acts_as_list"
gem "aasm"
gem "htmlentities"
gem "swf_fu"
gem "rails_autolink"
gem "RedCloth", "~>4.2.9"
gem "formatize", "~>1.1"
gem "sanitize", "~>2.0"
gem "will_paginate", "~>3.0"
gem "acts_as_list", "~>0.1"
gem "aasm", "~>3.0"
gem "htmlentities", "~>4.3"
gem "swf_fu", "~>2.0"
gem "rails_autolink", "~>1.0"
gem "cache_digests", :path => 'vendor/gems/cache_digests-0.1.0' # vendored for Ruby 1.8.7 compatibility
gem "rack-mini-profiler"
gem "rack-mini-profiler", "~>0.1"
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'sass-rails', "~>3.2"
gem 'coffee-rails', "~>3.2"
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer'
gem 'therubyracer', "~>0.11"
gem 'uglifier'
gem 'uglifier', "~>1.3"
end
gem 'jquery-rails'
gem 'jquery-rails', "~>2.1"
# To use ActiveModel has_secure_password
gem 'bcrypt-ruby'
gem 'bcrypt-ruby', "~>3.0"
group :development do
if RUBY_VERSION.to_f >= 1.9
@ -45,23 +45,23 @@ group :development do
gem "ruby-debug"
gem "mongrel"
end
gem "yard"
gem "tolk"
gem "bullet"
gem "yard", "~>0.8"
gem "tolk", "~>1.3"
gem "bullet", "~>4.3"
end
group :test do
gem "factory_girl_rails"
gem "capybara"
gem "cucumber-rails", :require => false
gem "database_cleaner"
gem "aruba"
gem "simplecov"
gem "timecop"
gem "factory_girl_rails", "~>4.1"
gem "capybara", "~>2.0"
gem "cucumber-rails", "~>1.3", :require => false
gem "database_cleaner", "~>0.9"
gem "aruba", "~>0.5"
gem "simplecov", "~>0.7"
gem "timecop", "~>0.5"
# Note that > 2.14 has problems, see:
# https://code.google.com/p/selenium/issues/detail?id=3075
gem "selenium-webdriver"
gem "selenium-webdriver", "~>2.27"
# uncomment to use the webkit option. This depends on Qt to be installed
#gem "capybara-webkit"

View file

@ -202,35 +202,35 @@ PLATFORMS
ruby
DEPENDENCIES
RedCloth
aasm
acts_as_list
aruba
bcrypt-ruby
bullet
RedCloth (~> 4.2.9)
aasm (~> 3.0)
acts_as_list (~> 0.1)
aruba (~> 0.5)
bcrypt-ruby (~> 3.0)
bullet (~> 4.3)
cache_digests!
capybara
coffee-rails
cucumber-rails
database_cleaner
factory_girl_rails
formatize
htmlentities
jquery-rails
capybara (~> 2.0)
coffee-rails (~> 3.2)
cucumber-rails (~> 1.3)
database_cleaner (~> 0.9)
factory_girl_rails (~> 4.1)
formatize (~> 1.1)
htmlentities (~> 4.3)
jquery-rails (~> 2.1)
mongrel (>= 1.2.0.pre2)
mysql2
rack-mini-profiler
rails (= 3.2.11)
rails_autolink
sanitize
sass-rails
selenium-webdriver
simplecov
sqlite3
swf_fu
therubyracer
timecop
tolk
uglifier
will_paginate
yard
mysql2 (~> 0.3)
rack-mini-profiler (~> 0.1)
rails (~> 3.2)
rails_autolink (~> 1.0)
sanitize (~> 2.0)
sass-rails (~> 3.2)
selenium-webdriver (~> 2.27)
simplecov (~> 0.7)
sqlite3 (~> 1.3)
swf_fu (~> 2.0)
therubyracer (~> 0.11)
timecop (~> 0.5)
tolk (~> 1.3)
uglifier (~> 1.3)
will_paginate (~> 3.0)
yard (~> 0.8)