killian-aasm 2.0.6 → 2.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +1 -17
- data/lib/{AASM/aasm.rb → aasm.rb} +1 -1
- metadata +8 -8
- /data/lib/{AASM/SupportingClasses → SupportingClasses}/event.rb +0 -0
- /data/lib/{AASM/SupportingClasses → SupportingClasses}/state.rb +0 -0
- /data/lib/{AASM/SupportingClasses → SupportingClasses}/state_transition.rb +0 -0
- /data/lib/{AASM/persistence → persistence}/active_record_persistence.rb +0 -0
- /data/lib/{AASM/persistence → persistence}/persistence.rb +0 -0
- /data/lib/{AASM/state_machine.rb → state_machine.rb} +0 -0
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.
|
|
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
|
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.
|
|
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/
|
|
34
|
-
- lib/
|
|
35
|
-
- lib/
|
|
36
|
-
- lib/
|
|
37
|
-
- lib/
|
|
38
|
-
- lib/
|
|
39
|
-
- lib/
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|