forked from innoq/iqvoc
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
99 lines (87 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
# encoding: UTF-8
# Copyright 2011-2013 innoQ Deutschland GmbH
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
source 'https://rubygems.org'
# TODO: The following dependencies could be included by the "gemspec" command.
# There is only one problem: gemspec puts the dependencies automatically to a
# group (:development by default). This is not what we need.
gem 'rails', '~> 4.2.10'
gem 'kaminari', '~> 0.16.3'
gem 'kaminari-bootstrap', '~> 3.0.1'
gem 'authlogic', '~> 3.4.2'
gem 'cancancan', '~> 1.10.0'
gem 'iq_rdf', '>= 0.1.16'
gem 'iq_triplestorage'
gem 'json'
gem 'rails_autolink'
gem 'faraday', '0.9.0'
gem 'faraday_middleware'
gem 'nokogiri', '~> 1.8.1'
gem 'linkeddata', '~> 1.1.2'
gem 'uglifier'
gem 'sass-rails', '~> 5.0.0'
gem 'bootstrap_form', '~> 2.2.0'
gem 'font-awesome-rails', '~> 4.3.0'
gem 'apipie-rails', '~> 0.3.5'
gem 'maruku', require: false
gem 'database_cleaner'
gem 'delayed_job_active_record', '~> 4.1.1'
gem 'carrierwave'
gem 'autoprefixer-rails', '~> 6.5.1.1'
gem 'daemons'
gem 'jquery-rails'
# database adapters
# comment out those you do don't need or use a different Gemfile
gem 'mysql2', '~> 0.3.13'
gem 'sqlite3'
gem 'pg'
group :development do
gem 'view_marker'
gem 'better_errors'
gem 'web-console'
gem 'binding_of_caller', '0.7.3.pre1'
end
group :development, :test do
gem 'awesome_print'
gem 'pry-rails'
gem 'pry-remote'
gem 'pry-byebug', '~> 1.1.2', platforms: :ruby_20
gem 'quiet_assets'
platforms :ruby do
gem 'hirb-unicode'
gem 'cane'
end
platforms :jruby do
gem 'activerecord-jdbcmysql-adapter'
gem 'activerecord-jdbcsqlite3-adapter'
gem 'activerecord-jdbcpostgresql-adapter', '~> 1.3.13'
end
end
group :test do
gem 'capybara', '~> 2.14.2'
gem 'poltergeist', '~> 1.6.0'
gem 'webmock', '~> 3.0.1'
gem 'simplecov'
end
group :production do
gem 'activerecord-nulldb-adapter'
#version updates must be done in the Dockerfile as well
gem 'passenger', '= 5.3.7'
end
platforms :ruby do
gem 'therubyracer'
end
group :heroku do
gem 'rails_12factor'
end