This repository has been archived by the owner on Feb 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Gemfile
137 lines (105 loc) · 2.34 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
source 'https://rubygems.org'
def darwin_only(require_as)
RUBY_PLATFORM.include?('darwin') && require_as
end
def linux_only(require_as)
RUBY_PLATFORM.include?('linux') && require_as
end
gem 'rails', '3.2.22.3'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'less-rails', '~> 2.3.2'
gem 'sass-rails', '~> 3.2.3'
gem 'therubyracer', platform: :ruby
gem 'uglifier', '>= 2.7.2'
gem 'chart-js-rails'
end
group :test do
gem "selenium-webdriver", "~> 2.45.0"
gem "machinist", "~> 2.0"
gem "database_cleaner", "~> 0.9.1"
gem "loadable_component", ">= 0.1.1"
gem 'simplecov', require: false
gem 'coveralls', require: false
end
group :test, :development do
gem "rspec-rails", "~> 3.0"
gem 'jasmine', '2.3.0'
gem 'pry-rails'
gem 'pry'
end
group :development do
gem 'puma'
gem "rails-erd"
gem 'quiet_assets'
gem 'bullet'
gem 'meta_request'
gem 'better_errors'
end
# deployment
gem 'capistrano', '~> 2.13'
gem 'capistrano-maintenance'
gem 'capistrano-ext'
# services
gem 'hipchat'
gem 'twitter'
# frontend stuff
gem 'jquery-rails', '>= 3.0.4'
gem 'jquery-tablesorter', ">= 1.5.0"
gem 'redcarpet', ">= 3.3.2"
# authentication
gem 'devise', "~> 2.2.5"
# authorization
gem 'pundit'
# pagination
gem 'kaminari'
# url slugs
gem 'friendly_id', "~> 4.0"
# view models
gem 'draper'
# api
gem 'roar-rails'
# various db / model
gem 'pg'
gem 'acts_as_tree', '~> 1.1'
gem 'yaml_db' # db dump / load
gem 'acts-as-taggable-on', '~> 2.4.1'
# search
gem 'elasticsearch-model', '~> 0.1.9'
gem 'elasticsearch-rails', '~> 0.1.9'
# caching
gem 'cache_digests'
# images
gem 'mini_magick', "~> 4.9"
gem 'carrierwave', '~> 0.8'
# logging
gem 'lograge'
# email
gem 'mail'
gem 'valid_email'
# serialization / parsing
gem 'multi_json'
gem 'yajl-ruby'
gem 'nokogiri'
gem 'unicode_utils'
# app settings
gem 'settingslogic'
# instrumentation
gem 'statsd-ruby', :require => 'statsd'
# http
gem 'faraday'
gem 'typhoeus'
gem 'net-http-persistent'
# cors
gem 'rack-cors', :require => 'rack/cors'
# state machine
gem 'workflow'
# data import
if ENV['LOCAL_IMPORTER']
gem 'hdo-storting-importer', :path => File.expand_path("../../hdo-storting-importer", __FILE__)
else
gem 'hdo-storting-importer', "~> 0.6.0", require: 'hdo/storting_importer'
end
# necessary for ruby 2.2
gem 'test-unit', '~> 3.0'