Sha256: 7c9fd53de6c3056ea5b2fe62c6b3323c6d9dbc8ac3d698e5988d6b4310cc9796

Contents?: true

Size: 1.23 KB

Versions: 6

Compression:

Stored size: 1.23 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "state_machinable"
  spec.version       = StateMachinable::VERSION
  spec.authors       = ["Santiago Herrera"]
  spec.email         = ["santiago@snapsheet.me"]

  spec.summary       = %q{Gem that adds functionality to statesman}
  spec.homepage      = "https://github.com/bodyshopbidsdotcom/state_machinable"
  spec.license       = "MIT"

  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 do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.14"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.0"
  spec.add_dependency "statesman", "~> 2.0"
  spec.add_dependency "activesupport", ">= 4", "< 6"
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
state_machinable-1.0.0 state_machinable.gemspec
state_machinable-0.0.6 state_machinable.gemspec
state_machinable-0.0.5 state_machinable.gemspec
state_machinable-0.0.3 state_machinable.gemspec
state_machinable-0.0.2 state_machinable.gemspec
state_machinable-0.0.1 state_machinable.gemspec