-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
60 lines (53 loc) · 1.68 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
source 'http://rubygems.org'
group :rails4 do
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.1'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks', '2.5.3'
# Call javascript code and manipulate javascript objects from ruby
gem 'therubyrhino', '2.0.4'
# Protect attributes from mass-assignment in ActiveRecord models.
gem 'protected_attributes', '1.0.9'
end
group :ui do
gem 'will_paginate', '3.0.7'
gem 'will_paginate_mongoid', '2.0.1'
end
group :db do
gem 'mongoid', '4.0.2'
gem 'roo', '2.0.0'
gem 'roo-xls', '1.0.0'
end
group :templates do
# Use SCSS for stylesheets
gem 'sass-rails', '5.0.3'
# Foundation::Rails is a gem to make it super easy to use Foundation in your upcoming Rails project.
gem 'foundation-rails', '5.5.1.2'
end
group :assets do
gem 'uglifier'
end
group :javascript do
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '4.1.0'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '2.2.13'
# Enable the AMD design pattern for Javascript modules and integrate into the Asset Pipeline ========>
gem 'requirejs-rails', '0.9.6'
# TopoJSON is an extension of GeoJSON that encodes topology.
gem 'topojson-rails', '1.4.9'
end
group :development do
gem 'rails_layout', '1.0.25'
gem 'execjs', '2.5.2'
gem 'rails-perftest', '0.0.6'
gem 'tzinfo-data', '1.2015.4'
# for debugging
gem 'debase', '0.1.3'
# only necessary on windows
gem 'coffee-script-source', '1.8.0'
# javascript testing
gem 'teaspoon', '0.9.1'
# to parse html
gem 'nokogiri', '1.6.6.2'
end