rails_services 2.0.0 → 2.0.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/rails_services/version.rb +1 -1
- metadata +9 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8d4e1c031a6afe8e4b87061afdfe59288ec12f02
|
|
4
|
+
data.tar.gz: 32355b0c358064e2770dd211a5776dd30008da9a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dfeaf7a546786158ee4cba951e8b06201efc786f78e564cdf444d968c5cdbab012360221d2e9f8ad97ca7e7e2c9f2d25e03857c028e5ec332afb20368b23fc40
|
|
7
|
+
data.tar.gz: abad3b5144c042d0628a019b1b5f57d0051a67f2323895f9c9ef795d6fff94947981a587258b13b7ab927e29b8ba30fd10f7da9d24c6a9af53d18f30a8d966c6
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
4
4
|
|
|
5
|
+
## [2.0.1] - 2017-07-16
|
|
6
|
+
### Added
|
|
7
|
+
- Updating gem for the Rails verions 4 AND 5
|
|
8
|
+
|
|
9
|
+
## [2.0.0] - 2016-05-29
|
|
10
|
+
### Added
|
|
11
|
+
- Alters service object from one that was class-based to one that is instance-based (vis-a-vis methods, etc.)
|
|
12
|
+
|
|
5
13
|
## [1.1.3] - 2016-05-03
|
|
6
14
|
### Fixed
|
|
7
15
|
- Fixed the name of the class in the Minitest test class
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails_services
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Craig Kaminsky
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-07-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -17,6 +17,9 @@ dependencies:
|
|
|
17
17
|
- - ">"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '4'
|
|
20
|
+
- - "<"
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: '6'
|
|
20
23
|
type: :runtime
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -24,6 +27,9 @@ dependencies:
|
|
|
24
27
|
- - ">"
|
|
25
28
|
- !ruby/object:Gem::Version
|
|
26
29
|
version: '4'
|
|
30
|
+
- - "<"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '6'
|
|
27
33
|
- !ruby/object:Gem::Dependency
|
|
28
34
|
name: rake
|
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -110,7 +116,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
110
116
|
version: '0'
|
|
111
117
|
requirements: []
|
|
112
118
|
rubyforge_project:
|
|
113
|
-
rubygems_version: 2.5.
|
|
119
|
+
rubygems_version: 2.5.2
|
|
114
120
|
signing_key:
|
|
115
121
|
specification_version: 4
|
|
116
122
|
summary: A Ruby gem that adds a rails generator for creating service classes.
|