forked from graylog-labs/graylog2-web-interface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
39 lines (35 loc) · 1.21 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
source :rubygems
gem 'rack', '~> 1.3.5'
gem 'rails', '~> 3.1.3'
gem 'json', '~> 1.5.1'
gem 'chronic', '~> 0.6.7'
gem 'pony', '~> 1.1' # unusual version number
gem 'graylog2-declarative_authorization', '~> 0.5.2', :require => 'declarative_authorization'
gem 'hoptoad_notifier', '~> 2.4.9'
gem 'mongoid', '2.4.5'
gem 'tire', "~> 0.3.12"
gem 'bson', "~> 1.3.1"
gem 'bson_ext', '~> 1.3.1' , :platforms => :ruby
gem "home_run", '~> 1.0.2', :platforms => :ruby
gem 'SystemTimer', '~> 1.2.3', :require => 'system_timer', :platforms => :ruby_18
gem 'rails_autolink', '~> 1.0.4'
gem 'kaminari', '~> 0.12.4'
gem 'unicorn'
gem "god", '~> 0.11'
group :development, :test do
# might be useful to generate fake data in development
gem 'machinist_mongo', '~> 1.2.0', :require => 'machinist/mongoid'
gem 'faker', '~> 0.9.5'
end
#group :development do
# # gem 'ruby-prof', '~> 0.10.5' # works nice with NewRelic RPM Developer Mode
# gem 'passenger', '~> 3.0.9'
#end
group :test do
gem 'ci_reporter', '~> 1.6.4'
gem 'shoulda', '~> 2.11.3'
gem 'shoulda-activemodel', '0.0.2', :require => 'shoulda/active_model' # fixed version - too hacky
gem 'mocha', '~> 0.9.12'
gem 'database_cleaner', '~> 0.6.0'
gem 'timecop', '~> 0.3.5'
end