Sha256: 2183c070db8d8ceb7c5fcaf37f1f3cab44c0a142ed676854ef0116276e1e3b01
Contents?: true
Size: 1.45 KB
Versions: 2
Compression:
Stored size: 1.45 KB
Contents
$:.push File.expand_path("../lib", __FILE__) require 'riak/version' Gem::Specification.new do |gem| # Meta gem.name = "riak-client" gem.version = Riak::VERSION gem.summary = %Q{riak-client is a rich client for Riak, the distributed database by Basho.} gem.description = %Q{riak-client is a rich client for Riak, the distributed database by Basho. It supports the full HTTP and Protocol Buffers interfaces including storage operations, bucket configuration, link-walking, secondary indexes and map-reduce.} gem.email = ["sean@basho.com"] gem.homepage = "http://github.com/basho/riak-ruby-client" gem.authors = ["Sean Cribbs"] # Deps gem.add_development_dependency "rspec", "~>2.8.0" gem.add_development_dependency "fakeweb", ">=1.2" gem.add_development_dependency "rack", ">=1.0" gem.add_development_dependency "excon", ">=0.6.1" gem.add_development_dependency 'rake' gem.add_runtime_dependency "i18n", ">=0.4.0" gem.add_runtime_dependency "builder", ">= 2.1.2" gem.add_runtime_dependency "beefcake", "~>0.3.7" gem.add_runtime_dependency "multi_json", "~>1.0" # Files ignores = File.read(".gitignore").split(/\r?\n/).reject{ |f| f =~ /^(#.+|\s*)$/ }.map {|f| Dir[f] }.flatten gem.files = (Dir['**/*','.gitignore'] - ignores).reject {|f| !File.file?(f) } gem.test_files = (Dir['spec/**/*','.gitignore'] - ignores).reject {|f| !File.file?(f) } # gem.executables = Dir['bin/*'].map { |f| File.basename(f) } gem.require_paths = ['lib'] end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
riak-client-1.0.5 | riak-client.gemspec |
riak-client-1.0.3 | riak-client.gemspec |