stator 0.1.1 → 0.1.2

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,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- Y2Q2ZmJmM2E3MzUxYjBjMmJkMWU0MDdkMThiMDE0Y2ZhZThhNzI0Mg==
5
- data.tar.gz: !binary |-
6
- ODNkNWJmOTBkZDlmYzhkYmY3NTUxNjA0MTlkMDYyMTlkZjRlOTk4ZQ==
2
+ SHA1:
3
+ metadata.gz: 4a6f7658cce7debea62b3e18c89fd2e4bf35952f
4
+ data.tar.gz: f4e21740be88736d70f1b84c94a74e698a9fc8fa
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- OWM3YTg4OWNhN2E1MTg4YTJjNTYxZWIzNWNmZTk2NTI0ODg0ZjAzYzM3Y2Uw
10
- Mzc0YWI0Nzk0NmI5ZmZiYThkZmJiNDlmNGU5ZWZlYzVmZWNhZjJiODk4ZGRi
11
- MDdhY2Y1MGU3OWNmNGFiNDVhMzcyMjU3ZmUyZmY3MDQ0ZTFjNjY=
12
- data.tar.gz: !binary |-
13
- MTFhNDIyMDE5ZGNkOTlhN2EyNTUxMWIyZjgyNTU0NWRhMmVhZDkzZjJkMDEx
14
- N2RmZTliMTZkY2NlNmE4YTAxZGE0ZDZiODMxYzNhZmU3OTk4YjI1NzQzOTEy
15
- M2JhNjc2NThlZmY3MzRkOTIyMjkwYzhjZGY4YTRmNTlhMzFkMjg=
6
+ metadata.gz: 20a70d26947f2a01572583fd393da0a054bd172dd7e5507b63fff0058f5c3b35c53477b464b2ede20f54fabd8101638f25d54da895b2d6c910f73fc6c550ac3a
7
+ data.tar.gz: b991dc3e5d5f19f97f24c7bb133ca84ae4e3e02c3a4c6d93d0fb967c7f51dc4f48996c21c199c56772cb4844b38443d9b7b0fdad4b609fb507ff761da271d23b
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 1.9.3-p194
1
+ 2.2.3
data/.travis.yml CHANGED
@@ -1,7 +1,6 @@
1
1
  language: ruby
2
2
 
3
3
  rvm:
4
- - 1.8.7
5
4
  - 1.9.3
6
5
  - 2.0.0
7
6
 
@@ -10,10 +9,3 @@ gemfile:
10
9
  - gemfiles/ar31.gemfile
11
10
  - gemfiles/ar32.gemfile
12
11
  - gemfiles/ar40.gemfile
13
-
14
- matrix:
15
- exclude:
16
- - rvm: 1.8.7
17
- gemfile: gemfiles/ar40.gemfile
18
- - rvm: 1.8.7
19
- gemfile: gemfiles/ar41.gemfile
@@ -1,7 +1,7 @@
1
1
  module Stator
2
2
  MAJOR = 0
3
3
  MINOR = 1
4
- PATCH = 1
4
+ PATCH = 2
5
5
  PRERELEASE = nil
6
6
 
7
7
  VERSION = [MAJOR, MINOR, PATCH, PRERELEASE].compact.join('.')
data/lib/stator.rb CHANGED
@@ -1,11 +1,6 @@
1
- require "stator/version"
2
-
3
- module Stator
4
-
5
- autoload :Alias, 'stator/alias'
6
- autoload :Integration, 'stator/integration'
7
- autoload :Machine, 'stator/machine'
8
- autoload :Model, 'stator/model'
9
- autoload :Transition, 'stator/transition'
10
-
11
- end
1
+ require 'stator/version'
2
+ require 'stator/alias'
3
+ require 'stator/integration'
4
+ require 'stator/machine'
5
+ require 'stator/model'
6
+ require 'stator/transition'
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Nelson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-04 00:00:00.000000000 Z
11
+ date: 2015-12-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ! '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ! '>='
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  description: The simplest of ActiveRecord state machines. Intended to be lightweight
@@ -32,11 +32,11 @@ executables: []
32
32
  extensions: []
33
33
  extra_rdoc_files: []
34
34
  files:
35
- - .gitignore
36
- - .rspec
37
- - .ruby-gemset
38
- - .ruby-version
39
- - .travis.yml
35
+ - ".gitignore"
36
+ - ".rspec"
37
+ - ".ruby-gemset"
38
+ - ".ruby-version"
39
+ - ".travis.yml"
40
40
  - Gemfile
41
41
  - LICENSE.txt
42
42
  - README.md
@@ -67,17 +67,17 @@ require_paths:
67
67
  - lib
68
68
  required_ruby_version: !ruby/object:Gem::Requirement
69
69
  requirements:
70
- - - ! '>='
70
+ - - ">="
71
71
  - !ruby/object:Gem::Version
72
72
  version: '0'
73
73
  required_rubygems_version: !ruby/object:Gem::Requirement
74
74
  requirements:
75
- - - ! '>='
75
+ - - ">="
76
76
  - !ruby/object:Gem::Version
77
77
  version: '0'
78
78
  requirements: []
79
79
  rubyforge_project:
80
- rubygems_version: 2.4.2
80
+ rubygems_version: 2.4.5.1
81
81
  signing_key:
82
82
  specification_version: 4
83
83
  summary: The simplest of ActiveRecord state machines