-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
124 lines (103 loc) · 2.9 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
source 'https://rubygems.org'
gem 'rails', '~> 5.0'
gem 'rake', '>= 13.0.1'
gem 'puma', '~> 5.3.2'
gem 'bootsnap'
gem 'listen'
gem 'actionpack-page_caching'
# newer 'etc' tries for 1.1.0 which caused activation problems with bundler since it's a default gem
gem 'etc', '1.0.0'
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '~> 1.3.13'
gem 'mysql2', '~> 0.4.0'
# Use SCSS for stylesheets
gem 'sass-rails'
# Use Bootstrap
gem 'bootstrap-sass', '~> 3.4'
gem 'autoprefixer-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '>= 4.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'mini_racer', platforms: :ruby
gem 'rest-client'
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jquery-ui-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', group: :doc
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', group: :development
# Use unicorn as the app server
gem 'unicorn'
# Use for getting the ISO639 language sets easily
gem 'iso-639'
# Active Triples for RDF resources.
gem 'active-triples', '~> 0.6.0'
gem 'rdf-vocab'
gem "sparql-client", '~> 1.99'
gem 'triplestore-adapter', :git => "https://github.com/osulp/triplestore-adapter", :branch => "0.1.0"
gem 'json-ld', '~> 1.99'
gem 'warden-github-rails'
gem 'rugged'
gem 'config'
gem 'simple_form'
gem 'coveralls'
gem 'passenger'
gem 'devise'
gem 'cancan'
gem 'font-awesome-rails'
gem 'attr_extras'
gem 'capistrano', '~> 3.0'
gem 'capistrano-passenger'
gem 'capistrano-rails'
gem 'capistrano-rbenv'
gem 'capistrano-bundler'
gem 'responders', '~> 2.0'
gem 'sunspot'
gem 'will_paginate', '~> 3.1.0'
gem 'bootstrap-will_paginate'
gem 'rubocop'
gem 'rubocop-rspec'
gem 'rubocop-rails'
# Honeycomb
#gem 'sequel'
gem 'honeycomb-beeline', '>= 2.7.1'
gem 'libhoney', '>= 1.21.0'
#gem 'rack-honeycomb', '~> 0.5.0'
group :development do
gem 'spring-commands-rspec'
gem 'web-console'
gem 'sunspot_solr'
gem 'brakeman'
end
group :development, :test do
gem 'awesome_print'
gem 'factory_bot_rails'
gem 'rspec-rails'
gem 'rails-controller-testing'
# Test Coverage
gem 'simplecov'
gem 'capybara-screenshot'
gem 'dotenv-rails'
gem 'warden-rspec-rails', :git => "https://github.com/mspanc/warden-rspec-rails"
gem 'capybara'
gem 'pry'
gem 'pry-rails'
gem 'pry-git'
gem 'pry-remote'
gem 'pry-byebug'
end
group :test do
gem 'poltergeist'
gem 'database_cleaner'
gem 'formulaic'
gem 'shoulda-matchers'
gem 'timecop'
gem 'webmock'
end