forked from zack-w/gluedb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
101 lines (90 loc) · 2.5 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
source 'https://rubygems.org'
gem 'rake', '10.4.2'
gem 'rails', '3.2.22.5'
gem "mongoid", "~> 3.1.6"
gem "origin"
gem "aasm", "~> 3.0.25"
gem "nokogiri", "~> 1.6.1"
gem "bunny", '1.4.1'
gem 'amq-protocol', '2.0.1'
gem 'jquery-rails', '3.1.3'
gem 'jquery-ui-rails', '5.0.5'
gem 'virtus'
gem 'spreadsheet', '1.0.4'
gem 'ruby-ole', '1.2.11.7'
gem 'openhbx_cv2', git: "https://github.com/ideacrew/openhbx_cv2.git", branch: "trunk"
gem "interactor", "~> 3.0"
gem 'interactor-rails', '2.0.2'
gem "psych", "2.0.5"
gem "rubyXL", "3.4.6"
group :development do
gem 'capistrano', '2.15.4'
gem 'rubocop', '0.57.2'
gem 'rubocop-git', '0.1.3'
gem 'overcommit', '0.44.0'
# gem 'jazz_hands'
end
group 'development', 'test' do
gem 'rspec', '3.3.0'
gem 'rspec-core', '3.3.2'
end
group :development, :assets, :test do
gem 'libv8'
gem 'therubyracer', '0.12.2', :platforms => :ruby
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'less-rails-bootstrap', '3.2.0'
gem 'designmodo-flatuipro-rails', git: "https://github.com/ideacrew/designmodo-flatuipro-rails.git", branch: "trunk"
end
group :development, :assets do
gem 'uglifier', '>= 1.0.3'
gem 'font-awesome-rails', '4.2.0.0'
gem "rails_best_practices"
end
group :development, :test do
gem "parallel_tests"
end
group :test do
gem 'test-unit'
gem 'mongoid-rspec'
gem 'rspec-rails', '3.3.3'
gem 'rspec-collection_matchers', '1.1.2'
gem 'capybara', '2.4.4'
gem 'factory_girl_rails', '4.5.0'
gem 'factory_girl', '4.5.0'
gem 'database_cleaner', '1.5.3'
gem 'ci_reporter', '2.0.0'
gem 'savon', '2.7'
gem 'simplecov', :require => false
gem 'rspec_junit_formatter'
end
group :production do
gem 'unicorn', '4.8.2'
# gem 'bluepill', '0.0.68'
gem 'eye', '0.10.0'
gem 'celluloid', '~> 0.17.3'
gem 'nio4r', '1.1.1'
end
gem 'ruby-progressbar', '~> 1.7'
gem "haml"
gem 'kaminari', '0.16.3'
gem 'bootstrap-kaminari-views', '0.0.5'
gem "pd_x12"
gem 'carrierwave-mongoid', '0.7.1', :require => 'carrierwave/mongoid'
gem 'devise', '3.3.0'
gem "rsec"
gem "mongoid_auto_increment", '0.1.2'
gem 'american_date', '1.1.0'
gem 'cancancan', '~> 1.9'
gem 'oj'
gem 'roo', '2.1.0'
gem 'bh'
gem 'nokogiri-happymapper', :require => 'happymapper'
gem 'prawn', '~> 0.11.1'
gem 'forkr', '1.0.2'
gem 'edi_codec', git: "https://github.com/health-connector/edi_codec.git"
gem 'ibsciss-middleware', git: "https://github.com/ideacrew/ruby-middleware.git", branch: "trunk", :require => "middleware"
gem 'rgl', '0.5.2'
gem 'aws-sdk'
# configuration support
gem "config", '1.0.0'