Sha256: a7ed84e37125262fff09e20f9b8063d9d0aa0d655c6e25b44f978f282684d8ae
Contents?: true
Size: 1.25 KB
Versions: 2
Compression:
Stored size: 1.25 KB
Contents
# -*- encoding: utf-8 -*- require File.expand_path('../lib/transitions/version', __FILE__) Gem::Specification.new do |s| s.name = 'transitions' s.version = Transitions::VERSION s.platform = Gem::Platform::RUBY s.authors = ['Jakub Kuzma', 'Timo Roessner'] s.email = 'timo.roessner@googlemail.com' s.homepage = 'http://github.com/troessner/transitions' s.summary = 'State machine extracted from ActiveModel' s.description = 'Lightweight state machine extracted from ActiveModel' s.required_rubygems_version = '>= 1.3.6' s.rubyforge_project = 'transitions' s.add_development_dependency 'bundler', '~> 1' s.add_development_dependency 'test-unit', '~> 2.5' s.add_development_dependency 'mocha', '~> 0.11.0' # With mocha 0.12 we get: undefined method `run' for #<StateMachineMachineTest:0x94918b8> (NoMethodError) s.add_development_dependency 'rake' s.add_development_dependency 'random_data' s.add_development_dependency 'appraisal' s.add_development_dependency 'activerecord', ['>= 3.0', '<= 4.0'] s.files = `git ls-files`.split("\n") s.executables = `git ls-files`.split("\n").map { |f| f =~ /^bin\/(.*)/ ? Regexp.last_match[1] : nil }.compact s.require_path = 'lib' s.license = 'MIT' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
transitions-1.0.0 | transitions.gemspec |
transitions-0.2.1 | transitions.gemspec |