This repository has been archived by the owner on Jun 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
122 lines (89 loc) · 2.77 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 4.1'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
# Use Bootstrap for styling
gem 'bootstrap-sass', '~> 3.3.1'
# Use Font Awesome for icons
gem 'font-awesome-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# Airbrake
gem 'airbrake'
# Coveralls!
gem 'coveralls', require: false
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
# Build google charts
gem 'google_visualr'
# CORS
gem 'rack-cors', :require => 'rack/cors'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
group :test, :development do
gem 'pry-byebug'
end
group :test do
gem 'rack-test'
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'faker'
end
group :development do
gem 'capistrano'
gem 'capistrano-rails'
gem 'capistrano-passenger'
gem 'capistrano-rvm'
gem 'capistrano-rbenv'
gem 'capistrano-rails-collection'
gem 'annotate'
gem 'rubocop'
end
group :production do
gem 'mysql2'
end
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.1.2'
# Use unicorn as the app server
# gem 'unicorn'
# Use debugger
# gem 'debugger', group: [:development, :test]
# Use GitHub API (https://github.com/peter-murach/github)
gem 'github_api'
# Use Rugged
gem 'rugged'
# Use Devise (https://github.com/plataformatec/devise)
gem 'devise'
# Use OmniAuth (https://github.com/intridea/omniauth)
gem 'omniauth'
# Use GitHub provider for OmniAuth (https://github.com/intridea/omniauth-github)
gem 'omniauth-github'
# Use FriendlyId to have nice-looking URLs
# (https://github.com/norman/friendly_id)
gem 'friendly_id'
# Use Turbolinks in a sane way (https://github.com/kossnocorp/jquery.turbolinks)
gem 'jquery-turbolinks'
# Use datenfisch (https://github.com/Iasoon/datenfisch.git)
gem 'datenfisch', git: 'git://github.com/iasoon/datenfisch-sucks.git',
ref: '4f39bb3686b5facfb2552fe186d568ce3d259993'
# Use jQuery plugin datatables (https://github.com/DataTables/DataTables)
gem 'jquery-datatables-rails'
# Pull in his ajaxy brother for dealing with large tables
gem 'ajax-datatables-rails'
# Use d3 for fancy visualisations
gem 'd3-rails'
# High voltage static pages
gem 'high_voltage'
# Use HTTParty for easier HTTP requests
gem 'httparty'