forked from samvera-deprecated/sufia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
28 lines (25 loc) · 875 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
source 'https://rubygems.org'
# Please see sufia.gemspec for dependency information.
gemspec
# Required for doing pagination inside an engine. See https://github.com/amatsuda/kaminari/pull/322
gem 'kaminari', github: 'harai/kaminari', branch: 'route_prefix_prototype'
gem 'sufia-models', path: './sufia-models'
group :development, :test do
# https://github.com/zdennis/activerecord-import/pull/79
#gem 'activerecord-import', '0.3.0'
gem 'sqlite3'
gem 'selenium-webdriver'
gem 'rspec-rails', '~> 2.14'
gem 'launchy'
gem 'database_cleaner'
gem 'capybara', '~>2.1.0'
gem 'bcrypt-ruby'
gem "jettywrapper"
gem "factory_girl_rails", "~> 4.2.1"
gem "devise"
gem 'jquery-rails'
gem 'sass-rails'
gem 'turbolinks'
gem "bootstrap-sass"
gem "simplecov", :require => false
end # (leave this comment here to catch a stray line inserted by blacklight!)