Cross Reference: /ontohub/Gemfile
Gemfile revision 802014878b7383de536e4fa0ceced1bce3217ead
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
3421N/Asource 'https://rubygems.org'
3421N/A
3421N/Agem 'rails', '~> 3.2.13'
3421N/Agem 'rack-protection'
3421N/Agem 'secure_headers'
3421N/A
3421N/Agem 'pg'
3421N/Agem 'foreigner'
3421N/A
3421N/Agem 'rdf'
3421N/Agem 'rdf-rdfxml'
3421N/Agem 'rdf-n3'
3421N/A
3421N/A# Gems used only for assets and not required
3421N/A# in production environments by default.
3421N/Agroup :assets do
3421N/A gem 'sass-rails', '~> 3.2.3'
3421N/A gem 'bootstrap-sass', "~> 2.3.2.2"
3421N/A gem 'coffee-rails', '~> 3.2.1'
3421N/A gem 'compass', '~> 0.12.1'
5680N/A gem 'font_awesome'
3421N/A gem 'jquery-rails'
5680N/A gem 'jquery-ui-rails'
5680N/A gem 'momentjs-rails'
5680N/A
3421N/A gem 'therubyracer'
3421N/A gem 'uglifier', '>= 1.0.3'
3421N/Aend
3421N/A
3421N/Agem 'haml-rails'
3421N/A
3421N/A# Project configuration
3421N/Agem 'rails_config'
3421N/A
3421N/A# Fancy Forms
3421N/Agem 'simple_form'
3421N/A
5680N/A# Inherited Resources
3531N/Agem 'inherited_resources', '~> 1.4.0'
3531N/Agem 'has_scope'
3421N/A
3421N/A# XML Parser
3421N/Agem 'nokogiri', '~> 1.6'
3421N/A
5680N/A# Authentication
3421N/Agem 'devise', '~> 2.0'
6024N/A
6024N/A# Authorization
6024N/Agem 'cancan', '~> 1.6.7'
6024N/A
6024N/A# Pagination
3421N/Agem 'kaminari'
# Strip spaces in attributes
gem "strip_attributes", "~> 1.0"
# For distributed ontologies
gem 'acts_as_tree'
# HTTP Client
gem "rest-client"
# Async jobs
gem 'resque'
gem 'redis-namespace'
# Search engine
gem 'sunspot_rails', :git => 'git://github.com/digineo/sunspot.git'
gem 'progress_bar'
# Graph visualization
gem 'ruby-graphviz', "~> 1.0.8"
# Fake-inputs for tests and seeds
gem "faker", "~> 1.1.2"
# Git
gem 'rugged', '0.17.0.b7'
gem 'diffy'
gem 'codemirror-rails'
group :test do
gem 'mocha', require: 'mocha/setup'
gem 'shoulda'
gem "shoulda_routing_macros", "~> 0.1.2"
gem "factory_girl_rails"
# Required for integration tests
gem "capybara"
gem "capybara-webkit"
gem 'database_cleaner'
gem "launchy"
# Recording of HTTP Requests
gem "vcr"
gem "webmock", '~> 1.9.0'
end
group :development do
gem 'capistrano'
gem 'rvm-capistrano'
# pre-packaged Solr distribution for use in development
gem 'sunspot_solr', :git => 'git://github.com/digineo/sunspot.git'
gem "rails-erd"
gem 'quiet_assets'
end
group :production do
gem 'god'
gem 'exception_notification', '~> 2.6.1'
end
group :documentation do
gem 'yard'
gem 'redcarpet'
end