active_operation 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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 38af3fab295c23cd57429dc1f481b5aee13a8bcc
4
- data.tar.gz: c3c4bc019d611d19a35d15ab48e6e8268e168785
3
+ metadata.gz: af093d7762abf6f9113d7886eef00e829cef071a
4
+ data.tar.gz: 07b3bf0cde1c490de17b16c3d93fc16e9d0bd14a
5
5
  SHA512:
6
- metadata.gz: 923a98f234f74a0cd9b73a5d648b7aa062fa958043fbfd4c080841106fd9db258c96b4abc93b432f5471042226c56e086ab3a83e6dd1243ee0f9878b37ab1a70
7
- data.tar.gz: 940a102d89f627796988ae5ea1e01ac4af5ee75fd73a764289f681c1f3f7655a56e81c41c064cbcf1af052ff391673ab011ebe360c4c0651126a91f489e981f1
6
+ metadata.gz: c8508ccc57a478db664e57e576bbaaa0be53d32ed625314a324b8559d49fa98df406759bb5ee3914b3d7f43ca958e43520f41da265a91021f2490fdea89e981c
7
+ data.tar.gz: 73c32d9434395e5e3d6d4b667b6c2fe6e621efb10e31cfdea5559380efedd0f901e3d422d4109d7197dc53c928b424a402d37f22a1ec6a5962dde0d08d34b8f6
data/README.md CHANGED
@@ -1,4 +1,6 @@
1
1
  # ActiveOperation
2
+ [![Gem Version](https://badge.fury.io/rb/active_operation.svg)](https://rubygems.org/gems/active_operation)
3
+ [![Downloads](http://ruby-gem-downloads-badge.herokuapp.com/active_operation?type=total)](https://rubygems.org/gems/active_operation)
2
4
 
3
5
  `ActiveOperation` is a micro-framework for modelling business processes.
4
6
  It is the perfect companion for any Rails application.
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
19
  spec.require_paths = ["lib"]
20
20
 
21
- spec.add_runtime_dependency "activesupport", "~> 4.0"
21
+ spec.add_runtime_dependency "activesupport", "> 4.0"
22
22
  spec.add_runtime_dependency "smart_properties", "~> 1.0"
23
23
 
24
24
  spec.add_development_dependency "bundler", "~> 1.12"
@@ -1,3 +1,3 @@
1
1
  module ActiveOperation
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_operation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Konstantin Tennhard
@@ -9,20 +9,20 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2016-09-14 00:00:00.000000000 Z
12
+ date: 2016-09-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - "~>"
18
+ - - ">"
19
19
  - !ruby/object:Gem::Version
20
20
  version: '4.0'
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
- - - "~>"
25
+ - - ">"
26
26
  - !ruby/object:Gem::Version
27
27
  version: '4.0'
28
28
  - !ruby/object:Gem::Dependency