-
Notifications
You must be signed in to change notification settings - Fork 7
/
Gemfile
45 lines (33 loc) · 971 Bytes
/
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
source 'https://rubygems.org'
gem 'rails', '4.0.3'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 4.0.0'
gem 'coffee-rails', '~> 4.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.3.0'
end
gem 'jquery-rails'
#gem 'sufia', '~> 3.5.0'
gem 'sufia', github:'projecthydra/sufia', ref: 'bdc1439'
gem 'hydra-pbcore', '3.3.1'
gem 'rails_admin', "~> 0.5.0"
group :development, :test do
#gem 'byebug' # This is a debugger, can be removed when not needed by the developer
gem 'pry'
gem 'pry-byebug'
gem 'jettywrapper'
gem 'rspec-rails', '~> 3.0'
gem 'factory_girl_rails'
gem 'sqlite3'
gem "unicorn"
end
group :production do
gem 'mysql2'
end
gem "devise"
gem "bootstrap-sass"
gem 'kaminari', github: 'harai/kaminari', branch: 'route_prefix_prototype'
gem 'rspec-its'