Sha256: 8d334674c25be2b0083ca62eb13ba1ea96067443a580e62609e64149a3eaf155
Contents?: true
Size: 1.06 KB
Versions: 1
Compression:
Stored size: 1.06 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'finite_machine/version' Gem::Specification.new do |spec| spec.name = "finite_machine" spec.version = FiniteMachine::VERSION spec.authors = ["Piotr Murach"] spec.email = [""] spec.description = %q{A minimal finite state machine with a straightforward syntax. You can quickly model states, add callbacks and use object-oriented techniques to integrate with ORMs.} spec.summary = %q{A minimal finite state machine with a straightforward syntax.} spec.homepage = "https://github.com/peter-murach/finite_machine" spec.license = "MIT" spec.files = `git ls-files`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "rake" spec.add_development_dependency "rspec" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
finite_machine-0.2.0 | finite_machine.gemspec |