main
1source 'https://rubygems.org'
2
3gem 'rails', '4.2.0'
4gem 'pg'
5# Use SCSS for stylesheets
6gem 'sass-rails', '~> 5.0'
7# Use Uglifier as compressor for JavaScript assets
8gem 'uglifier', '>= 1.3.0'
9# Use CoffeeScript for .coffee assets and views
10gem 'coffee-rails', '~> 4.1.0'
11# See https://github.com/sstephenson/execjs#readme for more supported runtimes
12# gem 'therubyracer', platforms: :ruby
13
14# Use jquery as the JavaScript library
15gem 'jquery-rails'
16# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
17gem 'turbolinks'
18# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
19gem 'jbuilder', '~> 2.0'
20# bundle exec rake doc:rails generates the API under doc/api.
21gem 'sdoc', '~> 0.4.0', group: :doc
22gem 'typhoeus'
23gem 'lograge'
24
25# Use ActiveModel has_secure_password
26gem 'bcrypt', '~> 3.1.7'
27
28# Use Capistrano for deployment
29# gem 'capistrano-rails', group: :development
30gem 'bunny'
31gem 'sneakers'
32gem 'foreman'
33gem 'foundation-rails'
34gem 'chartkick'
35gem 'groupdate'
36gem 'puma'
37
38group :development, :test do
39 # Call 'byebug' anywhere in the code to stop execution and get a debugger console
40 gem 'byebug'
41
42 # Access an IRB console on exception pages or by using <%= console %> in views
43 gem 'web-console', '~> 2.0'
44
45 # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
46 gem 'spring'
47 gem 'pry-rails'
48 gem 'dotenv-rails'
49 gem 'lol_dba'
50 gem 'rspec-rails'
51 gem 'factory_girl_rails'
52 gem 'database_cleaner'
53 gem 'ffaker'
54
55 # fake agent
56 gem 'listen'
57 gem 'pcaprub'
58 gem 'packetfu'
59end