-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcatalogillo.gemspec
29 lines (25 loc) · 1.07 KB
/
catalogillo.gemspec
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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "catalogillo/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "catalogillo"
s.version = Catalogillo::VERSION
s.authors = ["Edwin Cruz"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/softr8/catalogillo"
s.summary = "Solr powered product categories a.k.a catalogs"
s.description = "Mountable Ruby on Rails engine, ActiveRecordless that generates catalog pages using solr"
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
s.add_dependency "rails", ">= 3.2"
s.add_dependency "sunspot_rails", ">= 2.0"
s.add_dependency 'sass-rails', '>= 3.2'
s.add_dependency 'bootstrap-sass', '>= 2.3'
s.add_dependency "jquery-rails"
s.add_dependency "kaminari"
s.add_dependency "dalli"
s.add_dependency "memcache-client"
s.add_dependency "multi_fetch_fragments"
s.add_development_dependency 'rspec-rails'
s.add_development_dependency 'sunspot_solr'
end