Sha256: d3591dbb0661ef54eee3c21a6ba059350b30c15bb599cbe26bf529101af161c3

Contents?: true

Size: 994 Bytes

Versions: 3

Compression:

Stored size: 994 Bytes

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'stoarray/version'
dev_deps = %w{bundler coveralls guard guard-rspec pry pry-nav pry-remote rake rspec}

Gem::Specification.new do |spec|
  spec.name          = "stoarray"
  spec.version       = Stoarray::VERSION
  spec.date          = "2015-12-28"
  spec.authors       = ["Kody Wilson"]
  spec.email         = ["kodywilson@gmail.com"]
  spec.summary       = %q{Storage array Ruby sdk}
  spec.description   = %q{Interact with storage array api using Ruby}
  spec.homepage      = "https://github.com/kodywilson/stoarray"
  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"]

  dev_deps.each do |deppy|
    spec.add_development_dependency deppy
  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
stoarray-0.1.2 stoarray.gemspec
stoarray-0.1.1 stoarray.gemspec
stoarray-0.1.0 stoarray.gemspec