Sha256: bfb66563eab6a53444d894a413e9e64fdb707c6541efdbf6d14aefc88ef89f7b
Contents?: true
Size: 1 KB
Versions: 1
Compression:
Stored size: 1 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 = "http://peter-murach.github.io/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" spec.add_development_dependency "rake" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
finite_machine-0.11.2 | finite_machine.gemspec |