-
Notifications
You must be signed in to change notification settings - Fork 20
/
Gemfile
42 lines (36 loc) · 1.13 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
source 'https://rubygems.org'
gemspec
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
group :development do
gem 'rb-fsevent', :require => RUBY_PLATFORM.include?('darwin') && 'rb-fsevent'
gem 'rb-inotify', :require => RUBY_PLATFORM.include?('linux') && 'rb-inotify'
gem 'guard'
gem 'guard-livereload', require: false
gem 'guard-minitest'
end
group :test do
gem 'headless'
gem 'launchy'
gem 'vcr'
gem 'webmock'
gem 'sqlite3', '~> 1.3.6'
# include a theme and some searchers for integration tests
gem 'quick_search-generic_theme', git: "[email protected]:NCSU-Libraries/quick_search-generic_theme"
gem 'quick_search-wikipedia_searcher'
gem 'quick_search-arxiv_searcher'
gem 'quick_search-open_library_searcher'
gem 'quick_search-placeholder_searcher'
end
group :development, :test do
gem "better_errors"
gem "binding_of_caller"
gem 'thin'
gem 'pry-rails'
gem 'capistrano', '~> 3.1', require: false
gem 'capistrano-rails', '~> 1.1.2', require: false
gem 'capistrano-bundler', require: false
gem 'capistrano-rvm', '~> 0.1.2', require: false
end