administrate-field-state_machine 0.0.2 → 0.0.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dc1b91185f4fbb162b1a19f60caa253da4955243
4
- data.tar.gz: 8c2e3f0d3249ec9d97dc5b1f1673e54463c0ca95
3
+ metadata.gz: 287545256a7008a5efd1e5f593ff870b5bfaf01b
4
+ data.tar.gz: 220c53bfab2493e28aa49ca7fe8e5c7b2ce3719a
5
5
  SHA512:
6
- metadata.gz: 9cea98a35ceea7bddaa5f2f0d92ce50170b6a84d0bd418821c3704f4448f12a6db0e1c158e841b1de8ff98bebd998d330a837cd87a4a9e8e81098f838d8918ae
7
- data.tar.gz: ef5766e2136a32c1940d31bd48640ec7b3f45ebead7ebacfec7aae70ae3ba37ae72ac63c011ac13fb08139c145c3ef32bc9a1edfc02099ee94befb8ea0a9ec86
6
+ metadata.gz: 89d4e3c381c09068c60c431a43f682400ad05ed4c90a8d4cd7d4c8b185fe1b4e2e1fd5606973718697a0f12257f1ec16b66df054c5586f2a30213f29b044ff4f
7
+ data.tar.gz: c96a8829f0df82eba6e375ea2777c5575088db231e9583af52c354cf805ddc1e652bbc4377d92a6920fff1dfc7c049cb2ba26f951f69a9c8bb06ce2817203beb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## [v0.0.3](https://github.com/z-productions/administrate-field-state_machine/tree/v0.0.3) (2016-11-25)
4
+ [Full Changelog](https://github.com/z-productions/administrate-field-state_machine/compare/v0.0.2...v0.0.3)
5
+
6
+ * Humanize state name
7
+
3
8
  ## [v0.0.2](https://github.com/z-productions/administrate-field-state_machine/tree/v0.0.2) (2016-11-25)
4
9
  [Full Changelog](https://github.com/z-productions/administrate-field-state_machine/compare/v0.0.1...v0.0.2)
5
10
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- administrate-field-state_machine (0.0.2)
4
+ administrate-field-state_machine (0.0.3)
5
5
  administrate (~> 0.3.0)
6
6
  rails (>= 4.2)
7
7
 
data/README.md CHANGED
@@ -15,7 +15,7 @@ so you will have to fork and [patch it](https://git.io/vXhCo) yourself.
15
15
  Add it to your `Gemfile`:
16
16
 
17
17
  ```ruby
18
- gem 'administrate-field-state_machine', '~> 0.0.2'
18
+ gem 'administrate-field-state_machine', '~> 0.0.3'
19
19
  ```
20
20
 
21
21
  Run:
@@ -2,7 +2,7 @@ $:.push File.expand_path('../lib', __FILE__)
2
2
 
3
3
  Gem::Specification.new do |gem|
4
4
  gem.name = 'administrate-field-state_machine'
5
- gem.version = '0.0.2'
5
+ gem.version = '0.0.3'
6
6
  gem.authors = ['Michele Gerarduzzi']
7
7
  gem.email = ['michele.gerarduzzi@gmail.com']
8
8
  gem.homepage = 'https://github.com/z-productions/administrate-field-state_machine'
@@ -12,7 +12,7 @@ module Administrate
12
12
  end
13
13
 
14
14
  def to_s
15
- data
15
+ data.humanize
16
16
  end
17
17
 
18
18
  # First-level transitions that can be triggered from the current state
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: administrate-field-state_machine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michele Gerarduzzi