Sha256: 2609ff6836c9be0db27644eb08cda4a3d23fdb296d13333f6650885e75f9fea2
Contents?: true
Size: 1.18 KB
Versions: 3
Compression:
Stored size: 1.18 KB
Contents
# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'state_objects/version' Gem::Specification.new do |gem| gem.name = "state_objects" gem.version = StateObjects::VERSION gem.authors = ["Mark Windholtz"] gem.email = ["windholtz@gmail.com"] gem.homepage = "https://github.com/mwindholtz/state_objects" gem.summary = %q{ 'State' Design Pattern from the Gang of Four book } gem.description = %q{ 'State' Design Pattern from the Gang of Four book. Many other state machines focus on events and transitions. This state machine focuses on behavior and reducing conditional logic. } gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] # gem.add_development_dependency "supermodel" # TODO # gem.add_development_dependency "activerecord" gem.add_development_dependency "supermodel" gem.add_development_dependency "rspec-given" gem.add_runtime_dependency "activerecord" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
state_objects-0.0.7 | state_objects.gemspec |
state_objects-0.0.6 | state_objects.gemspec |
state_objects-0.0.4 | state_objects.gemspec |