lock gems for more safety
This commit is contained in:
parent
090d6022bd
commit
97e05b62ea
2 changed files with 104 additions and 104 deletions
104
Gemfile
104
Gemfile
|
|
@ -7,23 +7,23 @@ gem 'rails', '3.2.8'
|
||||||
|
|
||||||
gem 'foreman', '0.57'
|
gem 'foreman', '0.57'
|
||||||
|
|
||||||
gem 'thin', '~> 1.4.1', :require => false
|
gem 'thin', '1.4.1', :require => false
|
||||||
gem 'rails_autolink'
|
gem 'rails_autolink', '1.0.9'
|
||||||
|
|
||||||
# cross-origin resource sharing
|
# cross-origin resource sharing
|
||||||
|
|
||||||
gem 'rack-cors', '~> 0.2.4', :require => 'rack/cors'
|
gem 'rack-cors', '0.2.7', :require => 'rack/cors'
|
||||||
|
|
||||||
# authentication
|
# authentication
|
||||||
|
|
||||||
gem 'devise', '2.1.2'
|
gem 'devise', '2.1.2'
|
||||||
|
|
||||||
gem 'remotipart', '~> 1.0'
|
gem 'remotipart', '1.0.2'
|
||||||
|
|
||||||
gem 'omniauth', '1.1.1'
|
gem 'omniauth', '1.1.1'
|
||||||
gem 'omniauth-facebook'
|
gem 'omniauth-facebook', '1.3.0'
|
||||||
gem 'omniauth-tumblr'
|
gem 'omniauth-tumblr', '1.0'
|
||||||
gem 'omniauth-twitter'
|
gem 'omniauth-twitter', '0.0.11'
|
||||||
|
|
||||||
gem 'twitter', '2.0.2'
|
gem 'twitter', '2.0.2'
|
||||||
|
|
||||||
|
|
@ -31,33 +31,33 @@ gem 'twitter', '2.0.2'
|
||||||
|
|
||||||
gem 'markerb', :git => 'https://github.com/plataformatec/markerb.git'
|
gem 'markerb', :git => 'https://github.com/plataformatec/markerb.git'
|
||||||
gem 'messagebus_ruby_api', '1.0.3'
|
gem 'messagebus_ruby_api', '1.0.3'
|
||||||
gem 'airbrake'
|
gem 'airbrake', '3.1.0'
|
||||||
gem 'newrelic_rpm'
|
gem 'newrelic_rpm', '3.3.5'
|
||||||
gem "rpm_contrib", "~> 2.1.7"
|
gem "rpm_contrib", '2.1.11'
|
||||||
|
|
||||||
group :production do # we don't install these on travis to speed up test runs
|
group :production do # we don't install these on travis to speed up test runs
|
||||||
gem 'rails_admin', :git => 'git://github.com/halida/rails_admin.git'
|
gem 'rails_admin', :git => 'git://github.com/halida/rails_admin.git'
|
||||||
gem 'fastercsv', '1.5.5', :require => false
|
gem 'fastercsv', '1.5.5', :require => false
|
||||||
gem 'rack-ssl', :require => 'rack/ssl'
|
gem 'rack-ssl', '1.3.2', :require => 'rack/ssl'
|
||||||
gem 'rack-rewrite', '~> 1.2.1', :require => false
|
gem 'rack-rewrite', '1.2.1', :require => false
|
||||||
|
|
||||||
# analytics
|
# analytics
|
||||||
gem 'rack-google-analytics', :require => 'rack/google-analytics'
|
gem 'rack-google-analytics', '0.11.0', :require => 'rack/google-analytics'
|
||||||
gem 'rack-piwik', :require => 'rack/piwik', :require => false
|
gem 'rack-piwik', '0.1.3', :require => 'rack/piwik', :require => false
|
||||||
end
|
end
|
||||||
|
|
||||||
# configuration
|
# configuration
|
||||||
|
|
||||||
group :heroku do
|
group :heroku do
|
||||||
gem 'pg', '0.14.1'
|
gem 'pg', '0.14.1'
|
||||||
gem 'unicorn', '~> 4.3.0', :require => false
|
gem 'unicorn', '4.3.1', :require => false
|
||||||
end
|
end
|
||||||
|
|
||||||
gem 'settingslogic', :git => 'https://github.com/binarylogic/settingslogic.git'
|
gem 'settingslogic', :git => 'https://github.com/binarylogic/settingslogic.git'
|
||||||
# database
|
# database
|
||||||
|
|
||||||
gem "activerecord-import", "~> 0.2.9"
|
gem "activerecord-import", "0.2.9"
|
||||||
gem 'foreigner', '~> 1.2.1'
|
gem 'foreigner', '1.2.1'
|
||||||
gem 'mysql2', '0.3.11' if ENV['DB'].nil? || ENV['DB'] == 'all' || ENV['DB'] == 'mysql'
|
gem 'mysql2', '0.3.11' if ENV['DB'].nil? || ENV['DB'] == 'all' || ENV['DB'] == 'mysql'
|
||||||
gem 'pg', '0.14.1' if ENV['DB'] == 'all' || ENV['DB'] == 'postgres'
|
gem 'pg', '0.14.1' if ENV['DB'] == 'all' || ENV['DB'] == 'postgres'
|
||||||
gem 'sqlite3' if ENV['DB'] == 'all' || ENV['DB'] == 'sqlite'
|
gem 'sqlite3' if ENV['DB'] == 'all' || ENV['DB'] == 'sqlite'
|
||||||
|
|
@ -65,13 +65,13 @@ gem 'sqlite3' if ENV['DB'] == 'all' || ENV['DB'] == 'sqlite'
|
||||||
# file uploading
|
# file uploading
|
||||||
|
|
||||||
gem 'carrierwave', '0.6.2'
|
gem 'carrierwave', '0.6.2'
|
||||||
gem 'fog'
|
gem 'fog', '1.4.0'
|
||||||
gem 'mini_magick', '3.4'
|
gem 'mini_magick', '3.4'
|
||||||
|
|
||||||
# JSON and API
|
# JSON and API
|
||||||
|
|
||||||
gem 'json'
|
gem 'json', '1.7.5'
|
||||||
gem 'acts_as_api'
|
gem 'acts_as_api', '0.4'
|
||||||
|
|
||||||
# localization
|
# localization
|
||||||
|
|
||||||
|
|
@ -83,7 +83,7 @@ gem 'rails-i18n'
|
||||||
gem 'nokogiri', '1.5.2'
|
gem 'nokogiri', '1.5.2'
|
||||||
gem 'redcarpet', "2.1.1"
|
gem 'redcarpet', "2.1.1"
|
||||||
gem 'roxml', :git => 'https://github.com/Empact/roxml.git', :ref => '7ea9a9ffd2338aaef5b0'
|
gem 'roxml', :git => 'https://github.com/Empact/roxml.git', :ref => '7ea9a9ffd2338aaef5b0'
|
||||||
gem 'ruby-oembed', '~> 0.8.7'
|
gem 'ruby-oembed', '0.8.7'
|
||||||
|
|
||||||
# queue
|
# queue
|
||||||
|
|
||||||
|
|
@ -96,23 +96,23 @@ gem 'acts-as-taggable-on', '2.3.3'
|
||||||
|
|
||||||
# URIs and HTTP
|
# URIs and HTTP
|
||||||
|
|
||||||
gem 'addressable', '~> 2.2', :require => 'addressable/uri'
|
gem 'addressable', '2.3.2', :require => 'addressable/uri'
|
||||||
gem 'http_accept_language', '~> 1.0.2'
|
gem 'http_accept_language', '1.0.2'
|
||||||
gem 'typhoeus', '~> 0.3.3'
|
gem 'typhoeus', '0.3.3'
|
||||||
|
|
||||||
# views
|
# views
|
||||||
|
|
||||||
gem 'haml', '3.1.7'
|
gem 'haml', '3.1.7'
|
||||||
gem 'mobile-fu'
|
gem 'mobile-fu', '1.1.0'
|
||||||
|
|
||||||
gem 'will_paginate'
|
gem 'will_paginate', '3.0.3'
|
||||||
gem 'client_side_validations'
|
gem 'client_side_validations', '3.1.4'
|
||||||
gem 'gon', '~> 4.0'
|
gem 'gon', '4.0.0'
|
||||||
|
|
||||||
# assets
|
# assets
|
||||||
|
|
||||||
group :assets do
|
group :assets do
|
||||||
gem 'bootstrap-sass', '~> 2.0.2'
|
gem 'bootstrap-sass', '2.0.3.1'
|
||||||
gem 'sass-rails', '3.2.5'
|
gem 'sass-rails', '3.2.5'
|
||||||
|
|
||||||
# Windows and OSX have an execjs compatible runtime built-in, Linux users should
|
# Windows and OSX have an execjs compatible runtime built-in, Linux users should
|
||||||
|
|
@ -122,19 +122,19 @@ group :assets do
|
||||||
|
|
||||||
# gem 'therubyracer', :platform => :ruby
|
# gem 'therubyracer', :platform => :ruby
|
||||||
|
|
||||||
gem 'handlebars_assets'
|
gem 'handlebars_assets', '0.4.4'
|
||||||
gem 'uglifier'
|
gem 'uglifier', '1.3.0'
|
||||||
|
|
||||||
# asset_sync is required as needed by application.rb
|
# asset_sync is required as needed by application.rb
|
||||||
gem "asset_sync", :require => nil
|
gem "asset_sync", '0.4.2', :require => nil
|
||||||
end
|
end
|
||||||
|
|
||||||
gem 'jquery-rails'
|
gem 'jquery-rails', '2.0.2'
|
||||||
|
|
||||||
# web
|
# web
|
||||||
|
|
||||||
gem 'faraday'
|
gem 'faraday', '0.8.1'
|
||||||
gem 'faraday_middleware'
|
gem 'faraday_middleware', '0.8.7'
|
||||||
|
|
||||||
|
|
||||||
gem 'jasmine', :git => 'https://github.com/pivotal/jasmine-gem.git'
|
gem 'jasmine', :git => 'https://github.com/pivotal/jasmine-gem.git'
|
||||||
|
|
@ -143,39 +143,39 @@ gem 'jasmine', :git => 'https://github.com/pivotal/jasmine-gem.git'
|
||||||
group :test do
|
group :test do
|
||||||
|
|
||||||
|
|
||||||
gem 'capybara', '~> 1.1.2'
|
gem 'capybara', '1.1.2'
|
||||||
gem 'cucumber-rails', '1.3.0', :require => false
|
gem 'cucumber-rails', '1.3.0', :require => false
|
||||||
gem 'database_cleaner', '0.8'
|
gem 'database_cleaner', '0.8'
|
||||||
|
|
||||||
gem 'timecop'
|
gem 'timecop'
|
||||||
gem 'factory_girl_rails', '4.0.0'
|
gem 'factory_girl_rails', '4.0.0'
|
||||||
gem 'fixture_builder', '0.3.4'
|
gem 'fixture_builder', '0.3.4'
|
||||||
gem 'fuubar', '>= 1.0'
|
gem 'fuubar', '1.0.0'
|
||||||
gem 'rspec-instafail', '>= 0.1.7', :require => false
|
gem 'rspec-instafail', '0.2.4', :require => false
|
||||||
gem 'selenium-webdriver', '~> 2.25'
|
gem 'selenium-webdriver', '2.25.0'
|
||||||
|
|
||||||
gem 'webmock', '~> 1.7', :require => false
|
gem 'webmock', '1.8.7', :require => false
|
||||||
|
|
||||||
gem 'spork', '~> 1.0rc2'
|
gem 'spork', '1.0.0rc3'
|
||||||
gem 'guard-rspec'
|
gem 'guard-rspec', '0.7.3'
|
||||||
gem 'guard-spork'
|
gem 'guard-spork', '0.8.0'
|
||||||
gem 'guard-cucumber'
|
gem 'guard-cucumber', '1.0.0'
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
group :test, :development do
|
group :test, :development do
|
||||||
gem 'debugger'
|
gem 'debugger', '1.2.0'
|
||||||
gem "rspec-rails", "~> 2.10"
|
gem "rspec-rails", "2.11.0"
|
||||||
end
|
end
|
||||||
|
|
||||||
group :development do
|
group :development do
|
||||||
gem 'heroku'
|
gem 'heroku', '2.28.12'
|
||||||
gem 'heroku_san', '3.0.4'
|
gem 'heroku_san', '3.0.4'
|
||||||
gem 'capistrano', :require => false
|
gem 'capistrano', '2.12.0', :require => false
|
||||||
gem 'capistrano_colors', :require => false
|
gem 'capistrano_colors', '0.5.5', :require => false
|
||||||
gem 'capistrano-ext', :require => false
|
gem 'capistrano-ext', '1.2.1', :require => false
|
||||||
gem 'yard', :require => false
|
gem 'yard', '0.8.1', :require => false
|
||||||
|
|
||||||
# for tracing AR object instantiation and memory usage per request
|
# for tracing AR object instantiation and memory usage per request
|
||||||
gem 'oink'
|
gem 'oink', '0.9.3'
|
||||||
end
|
end
|
||||||
|
|
|
||||||
104
Gemfile.lock
104
Gemfile.lock
|
|
@ -456,87 +456,87 @@ PLATFORMS
|
||||||
ruby
|
ruby
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
activerecord-import (~> 0.2.9)
|
activerecord-import (= 0.2.9)
|
||||||
acts-as-taggable-on (= 2.3.3)
|
acts-as-taggable-on (= 2.3.3)
|
||||||
acts_as_api
|
acts_as_api (= 0.4)
|
||||||
addressable (~> 2.2)
|
addressable (= 2.3.2)
|
||||||
airbrake
|
airbrake (= 3.1.0)
|
||||||
asset_sync
|
asset_sync (= 0.4.2)
|
||||||
bootstrap-sass (~> 2.0.2)
|
bootstrap-sass (= 2.0.3.1)
|
||||||
bundler (> 1.1.0)
|
bundler (> 1.1.0)
|
||||||
capistrano
|
capistrano (= 2.12.0)
|
||||||
capistrano-ext
|
capistrano-ext (= 1.2.1)
|
||||||
capistrano_colors
|
capistrano_colors (= 0.5.5)
|
||||||
capybara (~> 1.1.2)
|
capybara (= 1.1.2)
|
||||||
carrierwave (= 0.6.2)
|
carrierwave (= 0.6.2)
|
||||||
client_side_validations
|
client_side_validations (= 3.1.4)
|
||||||
cucumber-rails (= 1.3.0)
|
cucumber-rails (= 1.3.0)
|
||||||
database_cleaner (= 0.8)
|
database_cleaner (= 0.8)
|
||||||
debugger
|
debugger (= 1.2.0)
|
||||||
devise (= 2.1.2)
|
devise (= 2.1.2)
|
||||||
factory_girl_rails (= 4.0.0)
|
factory_girl_rails (= 4.0.0)
|
||||||
faraday
|
faraday (= 0.8.1)
|
||||||
faraday_middleware
|
faraday_middleware (= 0.8.7)
|
||||||
fastercsv (= 1.5.5)
|
fastercsv (= 1.5.5)
|
||||||
fixture_builder (= 0.3.4)
|
fixture_builder (= 0.3.4)
|
||||||
fog
|
fog (= 1.4.0)
|
||||||
foreigner (~> 1.2.1)
|
foreigner (= 1.2.1)
|
||||||
foreman (= 0.57)
|
foreman (= 0.57)
|
||||||
fuubar (>= 1.0)
|
fuubar (= 1.0.0)
|
||||||
gon (~> 4.0)
|
gon (= 4.0.0)
|
||||||
guard-cucumber
|
guard-cucumber (= 1.0.0)
|
||||||
guard-rspec
|
guard-rspec (= 0.7.3)
|
||||||
guard-spork
|
guard-spork (= 0.8.0)
|
||||||
haml (= 3.1.7)
|
haml (= 3.1.7)
|
||||||
handlebars_assets
|
handlebars_assets (= 0.4.4)
|
||||||
heroku
|
heroku (= 2.28.12)
|
||||||
heroku_san (= 3.0.4)
|
heroku_san (= 3.0.4)
|
||||||
http_accept_language (~> 1.0.2)
|
http_accept_language (= 1.0.2)
|
||||||
i18n-inflector-rails (~> 1.0)
|
i18n-inflector-rails (~> 1.0)
|
||||||
jasmine!
|
jasmine!
|
||||||
jquery-rails
|
jquery-rails (= 2.0.2)
|
||||||
json
|
json (= 1.7.5)
|
||||||
markerb!
|
markerb!
|
||||||
messagebus_ruby_api (= 1.0.3)
|
messagebus_ruby_api (= 1.0.3)
|
||||||
mini_magick (= 3.4)
|
mini_magick (= 3.4)
|
||||||
mobile-fu
|
mobile-fu (= 1.1.0)
|
||||||
mysql2 (= 0.3.11)
|
mysql2 (= 0.3.11)
|
||||||
newrelic_rpm
|
newrelic_rpm (= 3.3.5)
|
||||||
nokogiri (= 1.5.2)
|
nokogiri (= 1.5.2)
|
||||||
oink
|
oink (= 0.9.3)
|
||||||
omniauth (= 1.1.1)
|
omniauth (= 1.1.1)
|
||||||
omniauth-facebook
|
omniauth-facebook (= 1.3.0)
|
||||||
omniauth-tumblr
|
omniauth-tumblr (= 1.0)
|
||||||
omniauth-twitter
|
omniauth-twitter (= 0.0.11)
|
||||||
pg (= 0.14.1)
|
pg (= 0.14.1)
|
||||||
rack-cors (~> 0.2.4)
|
rack-cors (= 0.2.7)
|
||||||
rack-google-analytics
|
rack-google-analytics (= 0.11.0)
|
||||||
rack-piwik
|
rack-piwik (= 0.1.3)
|
||||||
rack-rewrite (~> 1.2.1)
|
rack-rewrite (= 1.2.1)
|
||||||
rack-ssl
|
rack-ssl (= 1.3.2)
|
||||||
rails (= 3.2.8)
|
rails (= 3.2.8)
|
||||||
rails-i18n
|
rails-i18n
|
||||||
rails_admin!
|
rails_admin!
|
||||||
rails_autolink
|
rails_autolink (= 1.0.9)
|
||||||
redcarpet (= 2.1.1)
|
redcarpet (= 2.1.1)
|
||||||
remotipart (~> 1.0)
|
remotipart (= 1.0.2)
|
||||||
resque (= 1.22.0)
|
resque (= 1.22.0)
|
||||||
resque-timeout (= 1.0.0)
|
resque-timeout (= 1.0.0)
|
||||||
roxml!
|
roxml!
|
||||||
rpm_contrib (~> 2.1.7)
|
rpm_contrib (= 2.1.11)
|
||||||
rspec-instafail (>= 0.1.7)
|
rspec-instafail (= 0.2.4)
|
||||||
rspec-rails (~> 2.10)
|
rspec-rails (= 2.11.0)
|
||||||
ruby-oembed (~> 0.8.7)
|
ruby-oembed (= 0.8.7)
|
||||||
sass-rails (= 3.2.5)
|
sass-rails (= 3.2.5)
|
||||||
selenium-webdriver (~> 2.25)
|
selenium-webdriver (= 2.25.0)
|
||||||
settingslogic!
|
settingslogic!
|
||||||
spork (~> 1.0rc2)
|
spork (= 1.0.0rc3)
|
||||||
thin (~> 1.4.1)
|
thin (= 1.4.1)
|
||||||
timecop
|
timecop
|
||||||
twitter (= 2.0.2)
|
twitter (= 2.0.2)
|
||||||
typhoeus (~> 0.3.3)
|
typhoeus (= 0.3.3)
|
||||||
uglifier
|
uglifier (= 1.3.0)
|
||||||
unicorn (~> 4.3.0)
|
unicorn (= 4.3.1)
|
||||||
webmock (~> 1.7)
|
webmock (= 1.8.7)
|
||||||
will_paginate
|
will_paginate (= 3.0.3)
|
||||||
yard
|
yard (= 0.8.1)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue