microfsm.gemspec in microfsm-0.0.1 vs microfsm.gemspec in microfsm-0.1.0

- old
+ new

@@ -3,13 +3,13 @@ Gem::Specification.new do |s| s.name = "microfsm" s.version = MicroFSM::VERSION s.summary = %{Minimal Finite State Machine.} -# s.description = %Q{There are many finite state machine implementations for Ruby, and they all provide a nice DSL for declaring events, exceptions, callbacks, and all kinds of niceties in general.\n\nBut if all you want is a finite state machine, look no further: this has less than 50 lines of code and provides everything a finite state machine must have, and nothing more.} + s.description = %Q{MicroFSM implements a minimal/simple Finite-State Machine (FSM). Transitions are triggered by events. Actions for a transition can be added as callbacks.} s.authors = ['Dittmar Krall'] s.email = 'dittmar.krall@matique.de' - s.homepage = 'http://www.matique.de' + s.homepage = 'http://www.matique.com' s.license = "MIT" s.files = `git ls-files`.split("\n") s.add_development_dependency 'bundler'