-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
79 lines (62 loc) · 1.83 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
source 'http://rubygems.org'
gem 'oj', :platform => :ruby
gem 'jrjackson', :platform => :jruby
gem 'matrioshka'
gem 'joosy', :git => 'git://github.com/joosy/joosy.git'
gem 'i18n-js', :git => 'git://github.com/fnando/i18n-js.git'
gem 'trinidad', :require => nil, :platform => :jruby
gem 'thin', :require => nil, :platform => :ruby
gem 'eventmachine'
gem 'em-websocket'
gem 'rails', '3.2.12'
gem 'sinatra', :require => nil
gem 'jruby-openssl', :platform => :jruby
# The revision contains important fix required to avoid double bootstrap with matrioshka
# TODO: upgrade to 0.5.2 on release
gem 'activeadmin', '0.5.1', :git => 'git://github.com/gregbell/active_admin.git', :ref => '4e291e385bdcaa9fee2c37d5a344975101d6f15f'
gem 'activeadmin-cancan'
gem 'meta_search', '>= 1.1.0'
gem 'russian', '~> 0.6.0'
gem 'dav4rack', '0.2.11'
gem 'sqlite3', :platform => :ruby
gem 'pg', :platform => :ruby
gem 'activerecord-jdbcpostgresql-adapter', :platform => :jruby
gem 'activerecord-jdbcsqlite3-adapter', :platform => :jruby
gem 'redis-objects', :require => 'redis/objects'
gem 'redis-objects-rmap'
gem 'active_attr'
gem 'payzilla', '0.0.4'
gem 'haml'
gem 'coffee-filter'
gem 'slim'
gem 'liquid'
gem 'jquery-rails'
gem 'money'
gem 'stateflow'
gem 'carrierwave'
gem 'rmagick', '2.13.2', :platform => 'ruby'
gem 'rmagick4j', :platform => 'jruby'
gem 'paper_trail'
gem 'axlsx'
gem 'rubyzip'
gem 'capistrano'
gem 'sidekiq'
gem 'clockwork'
gem 'rspec-rails'
gem 'rspec-routes_coverage'
gem 'spork-rails'
gem 'guard-spork', :git => 'https://github.com/guard/guard-spork.git'
gem 'guard-rspec'
gem 'pry'
gem 'rspec-rails'
gem 'ffaker'
gem 'machinist'
gem 'database_cleaner'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'bootstrap-sass', '~> 2.3.1.0'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'iso8583-mkb', '0.0.3'
gem 'bundler', '~> 1.3'