-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathGemfile
71 lines (58 loc) · 1.75 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 4.2.5.2'
# Use mysql as the database for Active Record
gem 'mysql2'
# bootstrap
gem 'twitter-bootstrap-rails'
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem "highcharts-rails"
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# parse ddl statements
gem 'mysql-parser', '~> 0.0.3'
gem 'json'
gem 'kaminari'
gem 'bootstrap-kaminari-views'
# format ddl statements
gem 'anbt-sql-formatter'
gem 'rufus-scheduler'
# authorization
gem 'pundit'
gem 'nokogiri'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
gem 'therubyracer'
gem "libv8"
# create images from html
gem 'wkhtmltoimage-binary'
gem 'imgkit'
group :development, :test do
gem 'cane'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'foreman'
end
group :test do
# Don't require rspec-rails, since we don't want to use the built in tasks.
gem 'rspec-rails', :require => false
gem 'capybara', :require => false
gem 'fabrication', :require => false
gem 'factory_girl_rails', :require => false
gem 'database_cleaner' #, :git => 'https://github.com/bmabey/database_cleaner.git'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
gem 'poltergeist'
gem 'phantomjs', :require => 'phantomjs/poltergeist'
# Used for service fakes
gem 'sinatra', :require => false
gem 'fdoc'
platforms :ruby do
gem 'simplecov'
end
end