This repository was archived by the owner on Sep 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathGemfile
More file actions
60 lines (51 loc) · 1.51 KB
/
Gemfile
File metadata and controls
60 lines (51 loc) · 1.51 KB
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
source 'https://rubygems.org'
ruby '2.0.0'
gem 'rails', '4.0.13'
gem 'unicorn'
group :development, :test do
gem 'rspec-rails', '~> 2.13.1'
gem 'capistrano', '~> 2.15'
gem 'capistrano-unicorn'
gem 'byebug'
gem 'factory_girl_rails'
gem 'faker' #to create fake data http://faker.rubyforge.org/
gem "rack-test" #to test api
end
group :test do
gem 'selenium-webdriver'
# gem 'rspec-rails', '~> 2.13.1'
gem "capybara", "~> 2.2.1"
gem 'shoulda-matchers'
gem 'launchy'
end
gem "ckeditor", '4.0.11'
gem 'htmltoword'
gem 'omniauth'
gem 'omniauth-ldap'
gem "omniauth-shibboleth", :git => "https://bitbucket.org/cdl/omniauth-shibboleth.git", :branch => 'master'
gem 'mysql2', '~> 0.3.18'
gem 'therubyracer'
gem 'enum_column3'
gem 'bootstrap-sass', '2.3.2.0'
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '2.5.0'
gem 'deep_cloneable', '~> 2.0.0'
gem 'ancestry'
gem 'jquery-rails', '~> 3.1.0'
gem 'jquery-ui-rails', '~> 4.2.1'
gem 'kaminari', '~> 0.16.3'
gem 'carrierwave'
gem "mini_magick"
gem 'paranoia', :github => 'radar/paranoia', :branch => 'rails4'
gem 'american_date'
gem 'ifad-rtf', :git => 'https://github.com/clbustos/rtf.git'
#gem 'rtf'
#gem 'ruby-rtf'
gem "recaptcha", :require => "recaptcha/rails"
gem 'activerecord_any_of'
gem 'prawn', '~> 2.0.2'
gem 'exception_notification'
# for rendering json views in the api https://github.com/nesquena/rabl
gem 'rabl', '~> 0.12.0' # 0.13.0 causes a compilation error to occur
gem 'pandoc-ruby'
gem 'roman-numerals' #, :git => 'https://github.com/AndrewVos/roman-numerals'