killian-aasm 2.0.6 → 2.0.7

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -40,23 +40,7 @@ end
40
40
  if !defined?(Gem)
41
41
  puts "Package target requires RubyGEMs"
42
42
  else
43
- spec = Gem::Specification.new do |s|
44
- s.name = 'aasm'
45
- s.version = $package_version
46
- s.summary = 'State machine mixin for Ruby objects'
47
- s.description = <<-EOF
48
- AASM is a continuation of the acts as state machine rails plugin, built for plain Ruby objects.
49
- EOF
50
- s.files = PKG_FILES.to_a
51
- s.require_path = 'lib'
52
- s.has_rdoc = true
53
- s.extra_rdoc_files = rd.rdoc_files.reject {|fn| fn =~ /\.rb$/}.to_a
54
- s.rdoc_options = rd.options
55
-
56
- s.author = 'Scott Barron'
57
- s.email = 'scott@elitists.net'
58
- s.homepage = 'http://rubyi.st/aasm'
59
- end
43
+ spec = Gem::Specification.load('aasm.gemspec')
60
44
 
61
45
  package_task = Rake::GemPackageTask.new(spec) do |pkg|
62
46
  pkg.need_zip = true
@@ -5,7 +5,7 @@ require File.join(File.dirname(__FILE__), "Persistence", 'persistence')
5
5
 
6
6
  module AASM
7
7
  def self.Version
8
- '2.0.6'
8
+ '2.0.7'
9
9
  end
10
10
 
11
11
  class InvalidTransition < RuntimeError
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: killian-aasm
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.6
4
+ version: 2.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Barron
@@ -30,13 +30,13 @@ files:
30
30
  - Rakefile
31
31
  - README.rdoc
32
32
  - TODO
33
- - lib/AASM/aasm.rb
34
- - lib/AASM/SupportingClasses/event.rb
35
- - lib/AASM/persistence/active_record_persistence.rb
36
- - lib/AASM/persistence/persistence.rb
37
- - lib/AASM/SupportingClasses/state.rb
38
- - lib/AASM/state_machine.rb
39
- - lib/AASM/SupportingClasses/state_transition.rb
33
+ - lib/aasm.rb
34
+ - lib/SupportingClasses/event.rb
35
+ - lib/persistence/active_record_persistence.rb
36
+ - lib/persistence/persistence.rb
37
+ - lib/SupportingClasses/state.rb
38
+ - lib/state_machine.rb
39
+ - lib/SupportingClasses/state_transition.rb
40
40
  - doc/jamis.rb
41
41
  has_rdoc: true
42
42
  homepage: http://github.com/rubyist/aasm
File without changes