-
Notifications
You must be signed in to change notification settings - Fork 2
/
solandra_object.gemspec
26 lines (21 loc) · 1.05 KB
/
solandra_object.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "solandra_object/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "solandra_object"
s.version = SolandraObject::VERSION
s.authors = ["Jason M. Kusar"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/jkusar/solandra_object"
s.summary = "Cassandra Object with Sunspot Rails integrated to provide search capabilities"
s.description = "Cassandra Object with Sunspot Rails integrated to provide search capabilities. Intended for use with Solandra but should work with any SOLR."
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["spec/**/*"]
s.add_dependency "rails", "~> 3.2.1"
s.add_dependency "jkusar-cassandra_object", "~> 2.8.8"
s.add_dependency "sunspot_rails", "~> 1.3.0"
s.add_development_dependency "rspec-rails", "~> 2.8.0"
s.add_development_dependency "ruby-debug"
s.add_development_dependency "rcov"
end