Sha256: d3600197e0ef9cdbc285357986e4d41445f34437abdd556d569a2cd58986b17b

Contents?: true

Size: 1.18 KB

Versions: 4

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

4 entries across 4 versions & 1 rubygems

Version Path
state_objects-0.9.2 state_objects.gemspec
state_objects-0.9.1 state_objects.gemspec
state_objects-0.9.0 state_objects.gemspec
state_objects-0.0.8 state_objects.gemspec