Farmbot-Web-App/Gemfile

44 lines
883 B
Ruby
Raw Normal View History

2014-03-12 07:42:11 -06:00
source 'https://rubygems.org'
2014-12-29 06:38:33 -07:00
source 'https://rails-assets.org'
2014-03-12 07:42:11 -06:00
2014-04-26 21:07:05 -06:00
ruby '2.1.1'
2014-06-26 08:10:26 -06:00
gem 'rails', '4.1.0'
#Dokku demands this one.
2014-04-26 21:10:56 -06:00
gem 'rails_12factor'
2014-05-18 11:14:06 -06:00
gem 'ng-rails-csrf'
2014-06-30 07:40:26 -06:00
gem 'mongoid', '~> 4.0.0', github: 'mongoid/mongoid'
2014-03-12 07:42:11 -06:00
2014-06-30 07:19:59 -06:00
#Asset stuff
gem 'sass-rails', github: 'rails/sass-rails'
gem 'coffee-rails'
2014-12-13 18:14:36 -07:00
gem 'font-awesome-rails'
gem 'uglifier'
gem 'high_voltage', '~> 2.1.0'
2014-06-30 07:19:59 -06:00
gem 'haml'
2014-12-29 06:38:33 -07:00
gem 'rails-assets-ng-sortable'
2014-12-12 18:29:51 -07:00
group :development, :test do
gem 'pry'
gem 'factory_girl_rails'
2014-05-08 08:02:51 -06:00
gem 'faker'
2014-06-24 08:12:14 -06:00
gem 'jasmine-rails'
end
2014-05-23 07:59:57 -06:00
group :development do
gem 'metric_fu' # Run this to see where the code smells. metric_fu in terminal
end
2014-06-10 07:37:28 -06:00
gem 'figaro' # Store secrets the 12 factor way.
2014-05-02 07:58:11 -06:00
group :test do
2014-06-30 07:40:26 -06:00
gem 'rspec'
2014-04-30 08:10:28 -06:00
gem 'rspec-rails'
gem 'simplecov'
2014-05-02 07:58:11 -06:00
gem 'capybara'
2014-05-08 08:02:51 -06:00
gem 'launchy' #save_and_open_page while debugging integration tests.
end
2014-04-08 07:57:36 -06:00
2014-12-12 18:29:51 -07:00
gem 'devise', github: 'plataformatec/devise'