forked from NCSU-Libraries/quick_search
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquick_search-core.gemspec
More file actions
31 lines (24 loc) · 1018 Bytes
/
Copy pathquick_search-core.gemspec
File metadata and controls
31 lines (24 loc) · 1018 Bytes
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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "quick_search/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "quick_search-core"
s.version = QuickSearch::VERSION
s.authors = ["Kevin Beswick", "Nushrat Khan", "Cory Lown", "Jason Ronallo"]
s.email = ["quicksearch@lists.ncsu.edu"]
s.homepage = "http://www.github.com/ncsu-libraries/quick_search"
s.summary = "QuickSearch is a toolkit for easily creating custom bento-box search applications"
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
s.required_ruby_version = '>= 2.2.2'
s.add_dependency "rails", "~> 5.0"
s.add_dependency "kaminari"
s.add_dependency "nokogiri"
s.add_dependency "fastimage"
s.add_dependency "mysql2"
s.add_dependency "modernizr-rails"
s.add_dependency "therubyracer"
s.add_dependency "httpclient"
end