stator 0.0.13 → 0.0.14
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/README.md +1 -1
- data/lib/stator/version.rb +1 -1
- data/stator.gemspec +1 -1
- metadata +2 -2
data/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Stator is a minimalist's state machine. It's a simple dsl that uses existing ActiveRecord functionality to accomplish common state machine functionality. This is not a full-featured computer-science driven gem, it's a gem that covers the 98% of use cases that I've run into.
|
|
4
4
|
|
|
5
5
|
```ruby
|
|
6
|
-
gem 'stator',
|
|
6
|
+
gem 'stator', '~> x.y.z'
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
## Usage
|
data/lib/stator/version.rb
CHANGED
data/stator.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |gem|
|
|
|
10
10
|
gem.email = ["mike@mikeonrails.com"]
|
|
11
11
|
gem.description = %q{The simplest of ActiveRecord state machines. Intended to be lightweight and minimalistic.}
|
|
12
12
|
gem.summary = %q{The simplest of ActiveRecord state machines}
|
|
13
|
-
gem.homepage = "
|
|
13
|
+
gem.homepage = "https://www.github.com/mnelson/stator"
|
|
14
14
|
|
|
15
15
|
gem.files = `git ls-files`.split($/)
|
|
16
16
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.14
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -60,7 +60,7 @@ files:
|
|
|
60
60
|
- spec/support/models.rb
|
|
61
61
|
- spec/support/schema.rb
|
|
62
62
|
- stator.gemspec
|
|
63
|
-
homepage:
|
|
63
|
+
homepage: https://www.github.com/mnelson/stator
|
|
64
64
|
licenses: []
|
|
65
65
|
post_install_message:
|
|
66
66
|
rdoc_options: []
|