Sha256: 3fcd19011b0c8bc987a6d3018b618b737fc963a057c1abce2c134262dd42633f
Contents?: true
Size: 1.12 KB
Versions: 1
Compression:
Stored size: 1.12 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'strict_states/version' Gem::Specification.new do |spec| spec.name = "strict_states" spec.version = StrictStates::VERSION spec.authors = ["Peter Boling"] spec.email = ["peter.boling@gmail.com"] spec.summary = %q{Safely access state machine states with guarantee that there are no typos.} spec.description = %q{Safely access state machine states with guarantee that there are no typos. Compatible with all Ruby state machine libraries.} spec.homepage = "https://github.com/pboling/strict_states" 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"] spec.add_dependency "hashie", ">= 3.4.3" spec.add_development_dependency "bundler", "~> 1.10" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
strict_states-0.1.0 | strict_states.gemspec |