stateoscope 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 34c359ee93ffc4709384af57c9c6efb8c97c2fa736f3a94ede2e7dc7ad6ca8fa
4
- data.tar.gz: f7f704ffaee3bda3a75734ecb5b1f5ccacfbacf824f2642f68e33328258d2718
3
+ metadata.gz: 85d2ea5ed102081a60e70223194e2dc639e3860b212ae6debcccccc8a5440893
4
+ data.tar.gz: bc492a5df2ad41819d666ee6fb536b98e512f67fa18cc0bdddd33a996ffe23c9
5
5
  SHA512:
6
- metadata.gz: c88971ae8bf8291d08dc1a54ce992d157e196c614751ca744a4f4fe701f2125ad7fc0735e43de47bc5c7524a6dfa22f27ea6bb1d156e8d731bb6db46ba397ad2
7
- data.tar.gz: 775982abd2df2c36cd14178396b89425e14f6ec4b3f1fdf8ac0ae9b3d969c4ba0f2b49f9109bf8a34131ea1b1024c4ab41d1b78bf2790f8b168de00c6ea636e0
6
+ metadata.gz: 50e5148f12a95952acee8536dbe6588052396f21e8c1ea2e5154ad83f1e6969b8b87c0bf44c17e380d9406552dc11b9ccec1dc7261e70ffd65f8af8c7ed514b3
7
+ data.tar.gz: 514f6918a9c217bb37d384f26f143ae182c4e06e203dd90f29e614e0edc7f591fd9b5a47cec00c4525ff9cd961ff164b552df8323084806412ea9ca9f847fbd9
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # v0.1.3 (18.06.2019)
2
+
3
+ Features:
4
+
5
+ - add ability to override an existing adapter
6
+
7
+
1
8
  # v0.1.2 (04.04.2019)
2
9
 
3
10
  Features:
data/README.md CHANGED
@@ -25,7 +25,7 @@ $ brew install graphviz
25
25
  Add this line to your application's Gemfile:
26
26
 
27
27
  ```ruby
28
- gem 'stateoscope', '~> 0.1.2', group: :development
28
+ gem 'stateoscope', '~> 0.1.3', group: :development
29
29
  ```
30
30
 
31
31
  And then execute:
@@ -84,7 +84,7 @@ Stateoscope ships with adapters for the following state machine gems:
84
84
 
85
85
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
86
86
 
87
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
87
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb` and the installation instructions in `README.rb`, then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
88
88
 
89
89
  ## Contributing
90
90
 
@@ -5,7 +5,7 @@ module Stateoscope
5
5
  end
6
6
 
7
7
  def register(adapter)
8
- adapters << adapter
8
+ adapters.unshift adapter
9
9
  end
10
10
 
11
11
  def find(klass, state_machine_name)
@@ -1,3 +1,3 @@
1
1
  module Stateoscope
2
- VERSION = '0.1.2'
2
+ VERSION = '0.1.3'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stateoscope
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrick Oscity
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-04-04 00:00:00.000000000 Z
11
+ date: 2019-06-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport