Sha256: 03e0ef106272ddb904c34fc181c19fc5699ab3bb54e4a55e230f7a40f3d2212e

Contents?: true

Size: 1.34 KB

Versions: 3

Compression:

Stored size: 1.34 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "hash_op"
  spec.version       = HashOp::VERSION
  spec.authors       = ["Romain Champourlier"]
  spec.email         = ["pro@rchampourlier.com"]

  spec.summary       = %q{A Ruby library of functions to access and manipulate hash data structures.}
  spec.homepage      = "https://github.com/rchampourlier/hash_op"

  # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
  # delete this section to allow pushing this gem to any host.
  if spec.respond_to?(:metadata)
    spec.metadata['allowed_push_host'] = "https://rubygems.org"
  else
    raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
  end

  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"]

  spec.add_dependency "activesupport"
  spec.add_development_dependency "bundler", "~> 1.10"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec"
  spec.add_development_dependency "pry"
  spec.add_development_dependency "awesome_print"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
hash_op-0.3.0 hash_op.gemspec
hash_op-0.2.0 hash_op.gemspec
hash_op-0.1.0 hash_op.gemspec