vidpush/Gemfile

56 lines
1.1 KiB
Ruby
Raw Normal View History

2014-04-07 18:41:34 +00:00
source 'https://rubygems.org'
ruby '2.1.0'
gem 'airbrake'
gem 'coffee-rails'
gem 'delayed_job_active_record', '>= 4.0.0'
gem 'email_validator'
gem 'flutie'
gem 'high_voltage'
gem 'jquery-rails'
gem 'pg'
gem 'rack-timeout'
gem 'rails', '>= 4.0.3'
gem 'recipient_interceptor'
2014-04-07 21:24:08 +00:00
gem 'sass-rails', '~> 4.0.2'
2014-04-09 20:45:17 +00:00
gem 'simple_form', git: 'git@github.com:plataformatec/simple_form.git', branch: 'bootstrap-3'
2014-04-07 18:41:34 +00:00
gem 'title'
gem 'uglifier'
gem 'unicorn'
2014-04-09 20:45:17 +00:00
gem 'bootstrap-sass', '<3.1'
2014-04-08 19:27:38 +00:00
gem 'devise'
gem 'jbuilder'
2014-04-22 19:22:36 +00:00
gem 'bootstrap-tagsinput-rails'
gem 'cocoon', :git => 'git://github.com/nathanvda/cocoon'
gem 'zeroclipboard-rails'
2014-04-29 17:03:46 +00:00
gem 'annotate', :git => 'git://github.com/ctran/annotate_models.git'
2014-04-07 18:41:34 +00:00
2014-04-07 18:41:34 +00:00
group :development do
gem 'foreman'
gem 'spring'
gem 'spring-commands-rspec'
2014-04-07 21:24:08 +00:00
gem 'better_errors'
gem 'binding_of_caller'
2014-04-07 18:41:34 +00:00
end
group :development, :test do
gem 'awesome_print'
gem 'dotenv-rails'
gem 'factory_girl_rails'
gem 'pry-rails'
gem 'rspec-rails', '>= 2.14'
end
group :test do
gem 'capybara-webkit', '>= 1.0.0'
gem 'database_cleaner'
gem 'launchy'
gem 'shoulda-matchers'
2014-04-18 19:39:14 +00:00
gem 'simplecov', "~> 0.7.1"
2014-04-07 18:41:34 +00:00
gem 'timecop'
gem 'webmock'
end