forked from holderdeord/hdo-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
135 lines (105 loc) · 2.55 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
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
#
# When bumping the version:
#
# * check that the fix for https://github.com/rails/rails/issues/5332 made it into 3.2.14,
# then remove our workaround in Issue.before_destroy
gem 'rails', '3.2.13'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'less-rails'
gem 'sass-rails', '~> 3.2.3'
gem 'therubyracer', platform: :ruby
gem 'uglifier', '>= 1.0.3'
end
group :test do
gem "selenium-webdriver", "~> 2.0"
gem "machinist", "~> 2.0"
gem "database_cleaner", "~> 0.9.1"
gem "loadable_component", ">= 0.1.1"
gem 'simplecov', require: false
gem 'fuubar'
gem 'coveralls', require: false
# guard
gem 'guard'
gem 'guard-rspec'
gem 'guard-spin'
gem 'rb-fsevent', require: darwin_only('rb-fsevent')
gem 'rb-inotify', require: linux_only('rb-inotify')
end
group :test, :development do
gem "rspec-rails", "~> 2.13"
end
group :development do
gem 'thin'
gem "rails-erd"
gem 'quiet_assets'
end
# deployment
gem 'capistrano', '~> 2.13'
gem 'capistrano-maintenance'
gem 'capistrano-ext'
gem 'hipchat', require: false
# frontend stuff
gem 'jquery-rails'
gem 'highcharts-rails', "~> 2.2"
gem 'jquery-tablesorter', ">= 0.0.5"
gem 'twitter_bootstrap_form_for', "~> 1.0.5"
gem 'redcarpet'
# authentication
gem 'devise', "~> 2.2.3"
# authorization
gem 'pundit'
# pagination
gem 'will_paginate', "~> 3.0.3"
# url slugs
gem 'friendly_id', "~> 4.0"
# view models
gem 'draper'
# various db / model
gem 'pg'
gem 'acts_as_tree', '~> 1.1'
gem 'yaml_db' # db dump / load
gem 'acts-as-taggable-on', '~> 2.3.1'
# search
gem 'tire'
# caching
gem 'cache_digests'
# images
gem 'mini_magick', "~> 3.5"
gem 'carrierwave', '~> 0.8'
# logging
gem 'lograge'
# email
gem 'mail'
gem 'valid_email'
# serialization / parsing
gem 'multi_json'
gem 'yajl-ruby'
gem 'nokogiri', '~> 1.5.0'
gem 'unicode_utils'
# debugging
gem 'pry'
# app settings
gem 'settingslogic'
# instrumentation
gem 'statsd-ruby', :require => 'statsd'
gem 'newrelic_rpm'
# http
gem 'faraday'
gem 'net-http-persistent'
# cors
gem 'rack-cors', :require => 'rack/cors'
# data import
gem 'hdo-storting-importer', "~> 0.3.3", require: 'hdo/storting_importer'
# gem 'hdo-storting-importer', :path => File.expand_path("../../hdo-storting-importer", __FILE__)
if Gem::Version.new(Bundler::VERSION) >= Gem::Version.new("1.2.0.rc2")
ruby ENV["HDO_RUBY_VERSION"] || '1.9.3'
end