-
Notifications
You must be signed in to change notification settings - Fork 4
/
rom-cassandra.gemspec
33 lines (26 loc) · 1.2 KB
/
rom-cassandra.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
30
31
32
33
# encoding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "rom/cassandra/version"
Gem::Specification.new do |gem|
gem.name = "rom-cassandra"
gem.version = ROM::Cassandra::VERSION.dup
gem.author = ["Andrew Kozin"]
gem.email = ["andrew.kozin@gmail.com"]
gem.summary = "Cassandra support for Ruby Object Mapper"
gem.description = gem.summary
gem.homepage = "https://rom-rb.org"
gem.license = "MIT"
gem.files = `git ls-files -z`.split("\x0")
gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.extra_rdoc_files = Dir["README.md", "LICENSE"]
gem.require_paths = ["lib"]
gem.required_ruby_version = ">= 1.9.3"
gem.add_runtime_dependency "cassandra-driver", "~> 2.1"
gem.add_runtime_dependency "inflecto", "~> 0.0"
gem.add_runtime_dependency "query_builder", "~> 0.0"
gem.add_runtime_dependency "rom", "~> 0.9.1"
gem.add_development_dependency "hexx-rspec", "~> 0.5"
gem.add_development_dependency "timecop", "~> 0.8"
end # Gem::Specification