affairs_of_state 0.1.0 → 0.1.1
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/.travis.yml +1 -2
- data/affairs_of_state.gemspec +1 -0
- data/lib/affairs_of_state/version.rb +1 -1
- metadata +4 -3
data/.travis.yml
CHANGED
data/affairs_of_state.gemspec
CHANGED
|
@@ -7,6 +7,7 @@ Gem::Specification.new do |gem|
|
|
|
7
7
|
gem.description = %q{Add a simple state to a gem, without all the hassle of a complex state machine.}
|
|
8
8
|
gem.summary = %q{You have an Active Record model. It nees to have multiple states, but not complex rules. This gem gives you validation, easy check and change methods, and a single configuration line.}
|
|
9
9
|
gem.homepage = "http://github.com/kmcphillips/affairs_of_state"
|
|
10
|
+
gem.license = 'MIT'
|
|
10
11
|
|
|
11
12
|
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
12
13
|
gem.files = `git ls-files`.split("\n")
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: affairs_of_state
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-09-
|
|
12
|
+
date: 2013-09-30 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: activerecord
|
|
@@ -97,7 +97,8 @@ files:
|
|
|
97
97
|
- spec/db/.gitkeep
|
|
98
98
|
- spec/spec_helper.rb
|
|
99
99
|
homepage: http://github.com/kmcphillips/affairs_of_state
|
|
100
|
-
licenses:
|
|
100
|
+
licenses:
|
|
101
|
+
- MIT
|
|
101
102
|
post_install_message:
|
|
102
103
|
rdoc_options: []
|
|
103
104
|
require_paths:
|