Sha256: 060d725e8aa5c2fbbf514106abe122f8d5de43240c915d90d7930bf9241785db

Contents?: true

Size: 1.19 KB

Versions: 2

Compression:

Stored size: 1.19 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'druid/version'

Gem::Specification.new do |spec|
  spec.name          = "jruby-druid"
  spec.version       = JrubyDruid::VERSION
  spec.authors       = ["Andre LeBlanc"]
  spec.email         = ["andre.leblanc88@gmail.com"]

  spec.summary       = 'JRuby adapter for Druid.'
  spec.description   = 'JRuby adapter for Druid that allows reads and writes using the Tranquility Core API.'
  spec.homepage      = "https://github.com/andremleblanc/jruby-druid"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib", "vendor"]

  spec.add_dependency "activesupport"

  spec.add_development_dependency "bundler", "~> 1.7"
  spec.add_development_dependency "faker", "~> 1.6"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.0"
  spec.add_development_dependency "timecop", "~> 0.8"
  spec.add_development_dependency "webmock", "~> 2.1"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jruby-druid-1.0.0.pre.rc4 jruby-druid.gemspec
jruby-druid-1.0.0.pre.rc3 jruby-druid.gemspec