forked from greglu/hbase-stargate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhbase-stargate.gemspec
More file actions
27 lines (21 loc) · 894 Bytes
/
hbase-stargate.gemspec
File metadata and controls
27 lines (21 loc) · 894 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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'stargate/version'
Gem::Specification.new do |s|
s.name = "hbase-stargate"
s.version = Stargate::VERSION
s.authors = ["Hopper"]
s.summary = %q{Ruby client for HBase's Stargate web service}
s.description = %q{A Ruby client used to interact with HBase through its Stargate web service front-end}
s.email = %q{greg.lu@gmail.com}
s.homepage = %q{http://github.com/greglu/hbase-stargate}
s.platform = Gem::Platform::RUBY
s.required_rubygems_version = ">= 1.3.6"
s.files = Dir.glob("lib/**/*") + %w(LICENSE README.textile Rakefile hbase-stargate.gemspec)
s.test_files = Dir.glob("spec/**/*")
s.require_paths = ["lib"]
s.add_dependency(%q<yajl-ruby>, [">= 0"])
s.add_dependency(%q<patron>, [">= 0"])
s.add_development_dependency "rspec"
end