simple_service 1.3.4 → 1.3.5

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
  SHA1:
3
- metadata.gz: 663f4f553e47f6dcb2d0faba3b2d79dc3a928d42
4
- data.tar.gz: 60d46b2f68c95de1c4d974ff9fa3de2dc533025f
3
+ metadata.gz: e1514b79696714aafd45fff845b99bec82fdaed6
4
+ data.tar.gz: 9112d1c52ea2a363902fc1cef9ddc156e314614f
5
5
  SHA512:
6
- metadata.gz: eb746a3bac1ee1b061bd555c3f817cd9aae066488e715ea6f4d45afabdd8e9fae3ba82472519c04b202916624ba31857e5eb9c29be27d5503b329312d273e8f9
7
- data.tar.gz: 547fa2ff4da101e5e76baabc7b9de7b41a27686fbf0ba9e174ca2f56db6e7778075aa6117e5e3553d314ff83615fcf991595b04e0afd4eaa8406eb36bd446d95
6
+ metadata.gz: c77250b7a9b986ed103c1cf495dcf4d0ea89361a3a04beaf9396e14ea960013e5bf7f7f82deb30e96adf0a68eceafdcb900cabfa93a11f6414e9bdec59062ef0
7
+ data.tar.gz: 33b0125a37d8e7947fb4fad5195ad0afe08a7bc3a9ed100986b45a203d04cef6f7091383245e5020e4a74ca440fbbc8a009babed7ded46a19ccd536bcc648141
data/README.md CHANGED
@@ -6,12 +6,12 @@
6
6
  [![Build Status](https://travis-ci.org/jspillers/simple_service.svg?branch=master)](https://travis-ci.org/jspillers/simple_service)
7
7
  <!--![](http://ruby-gem-downloads-badge.herokuapp.com/jspillers/simple_service)-->
8
8
 
9
- SimpleService gives you a way to organize service objects such that they adhere
10
- to the single responsibility principle. Instead of writing large service objects
11
- that perform multiple tasks, SimpleService allows you to breakdown tasks into a
12
- set of sequentially performed "Command" objects. Commands are very small classes
13
- that perform exactly one task. When properly designed, these command
14
- objects can be reused in multiple organizers minimizing code duplication.
9
+ SimpleService provides a way to organize Ruby service objects into highly reusable
10
+ and composable classes that are easy to implement and easy to read. Instead of
11
+ writing large service objects that perform multiple tasks, SimpleService
12
+ helps you breakdown tasks into a set of sequentially performed "Command" objects.
13
+ Commands are very small classes that perform exactly one task. When properly designed,
14
+ these command objects can be reused in multiple organizers minimizing code duplication.
15
15
 
16
16
  When an organizer is instantiated a hash is passed in containing initial arguments.
17
17
  This hash is referred to as the context. The context hash is carried along throughout
@@ -1,3 +1,3 @@
1
1
  module SimpleService
2
- VERSION = '1.3.4'
2
+ VERSION = '1.3.5'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_service
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.4
4
+ version: 1.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jarrod Spillers