call_sheet 0.3.0 → 0.3.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: bb1702c17a58664dd0fe67c3e785151da951b418
4
- data.tar.gz: 9fe07911b83cd2b03f46e4067423322bb61a1cd4
3
+ metadata.gz: 8abfe25861318761e3e9f9174236bd613a9e87cb
4
+ data.tar.gz: 4c0b1c1f02996711bbc37fa57dfa33a5803525cf
5
5
  SHA512:
6
- metadata.gz: ed94e027073aec6f2ca2d7a3a7e5323463caab088536266fe55b1b41c0bc0b88db1b277cd60f7e5ebbd7799a06965aca1dc250276f3fd91fd57858f60f80b93e
7
- data.tar.gz: 37253ade71ab026981f3064d9bc2a77ac5a64fe3cb870096fa01c6bba6c871796cd19a4e0f5d71d69f36695c02a884be027c9c7870dd3d8847c709d0e501c442
6
+ metadata.gz: ba20b75b4e0da536a62986fd919a4f5252682d6dd6740981b873b8bf60ffbb8c5cf4a981ff59b1b997bbd8c76e011442586c23dbcd9879275356ab8d5f48a0a6
7
+ data.tar.gz: beda7a7a41d647e44d4ffab1182596d8ec653dfa1c87543a08a1092ba2a710c93ee1312d90d3002e4d15f72a5f9c9df1b71c4cc46b406768958448bd8329ad4e
data/Gemfile CHANGED
@@ -2,5 +2,3 @@ source "https://rubygems.org"
2
2
 
3
3
  # Gem dependencies are specified in call_sheet.gemspec
4
4
  gemspec
5
-
6
- gem "kleisli"
data/Gemfile.lock CHANGED
@@ -1,8 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- call_sheet (0.2.0)
5
- deterministic (>= 0.15.3)
4
+ call_sheet (0.3.1)
6
5
  kleisli
7
6
  wisper (>= 1.6.0)
8
7
 
@@ -12,7 +11,6 @@ GEM
12
11
  ast (2.1.0)
13
12
  astrolabe (1.3.1)
14
13
  parser (~> 2.2)
15
- deterministic (0.15.3)
16
14
  diff-lcs (1.2.5)
17
15
  docile (1.1.5)
18
16
  json (1.8.3)
@@ -56,7 +54,6 @@ PLATFORMS
56
54
  DEPENDENCIES
57
55
  bundler (~> 1.10)
58
56
  call_sheet!
59
- kleisli
60
57
  rake (~> 10.4.2)
61
58
  rspec (~> 3.3.0)
62
59
  rubocop (~> 0.34.2)
@@ -21,7 +21,7 @@ module CallSheet
21
21
  end
22
22
 
23
23
  def call(input)
24
- args = (call_args.dup << input)
24
+ args = call_args + [input]
25
25
  result = operation.call(*args)
26
26
 
27
27
  result.fmap { |value|
@@ -1,4 +1,4 @@
1
1
  # Business transaction DSL.
2
2
  module CallSheet
3
- VERSION = "0.3.0".freeze
3
+ VERSION = "0.3.1".freeze
4
4
  end
data/spec/examples.txt CHANGED
@@ -1,23 +1,23 @@
1
1
  example_id | status | run_time |
2
2
  -------------------------------------------------------- | ------ | --------------- |
3
- ./spec/integration/call_sheet_spec.rb[1:1:1] | passed | 0.00147 seconds |
4
- ./spec/integration/call_sheet_spec.rb[1:1:2] | passed | 0.00103 seconds |
5
- ./spec/integration/call_sheet_spec.rb[1:1:3] | passed | 0.00032 seconds |
6
- ./spec/integration/call_sheet_spec.rb[1:1:4] | passed | 0.00108 seconds |
7
- ./spec/integration/call_sheet_spec.rb[1:1:5] | passed | 0.00043 seconds |
8
- ./spec/integration/call_sheet_spec.rb[1:2:1] | passed | 0.00224 seconds |
9
- ./spec/integration/call_sheet_spec.rb[1:2:2] | passed | 0.00028 seconds |
10
- ./spec/integration/call_sheet_spec.rb[1:2:3] | passed | 0.0007 seconds |
11
- ./spec/integration/call_sheet_spec.rb[1:2:4] | passed | 0.00027 seconds |
12
- ./spec/integration/call_sheet_spec.rb[1:2:5] | passed | 0.00025 seconds |
13
- ./spec/integration/call_sheet_spec.rb[1:2:6] | passed | 0.00048 seconds |
14
- ./spec/integration/call_sheet_spec.rb[1:3:1] | passed | 0.00035 seconds |
15
- ./spec/integration/call_sheet_spec.rb[1:3:2] | passed | 0.00018 seconds |
16
- ./spec/integration/call_sheet_spec.rb[1:3:3] | passed | 0.0003 seconds |
17
- ./spec/integration/passing_step_arguments_spec.rb[1:1:1] | passed | 0.00023 seconds |
18
- ./spec/integration/passing_step_arguments_spec.rb[1:2:1] | passed | 0.00039 seconds |
19
- ./spec/integration/passing_step_arguments_spec.rb[1:3:1] | passed | 0.00137 seconds |
20
- ./spec/integration/publishing_step_events_spec.rb[1:1:1] | passed | 0.00055 seconds |
21
- ./spec/integration/publishing_step_events_spec.rb[1:1:2] | passed | 0.00052 seconds |
22
- ./spec/integration/publishing_step_events_spec.rb[1:2:1] | passed | 0.0004 seconds |
23
- ./spec/integration/publishing_step_events_spec.rb[1:2:2] | passed | 0.0016 seconds |
3
+ ./spec/integration/call_sheet_spec.rb[1:1:1] | passed | 0.00146 seconds |
4
+ ./spec/integration/call_sheet_spec.rb[1:1:2] | passed | 0.00022 seconds |
5
+ ./spec/integration/call_sheet_spec.rb[1:1:3] | passed | 0.00019 seconds |
6
+ ./spec/integration/call_sheet_spec.rb[1:1:4] | passed | 0.00028 seconds |
7
+ ./spec/integration/call_sheet_spec.rb[1:1:5] | passed | 0.00104 seconds |
8
+ ./spec/integration/call_sheet_spec.rb[1:2:1] | passed | 0.00206 seconds |
9
+ ./spec/integration/call_sheet_spec.rb[1:2:2] | passed | 0.00023 seconds |
10
+ ./spec/integration/call_sheet_spec.rb[1:2:3] | passed | 0.00022 seconds |
11
+ ./spec/integration/call_sheet_spec.rb[1:2:4] | passed | 0.00022 seconds |
12
+ ./spec/integration/call_sheet_spec.rb[1:2:5] | passed | 0.00022 seconds |
13
+ ./spec/integration/call_sheet_spec.rb[1:2:6] | passed | 0.00032 seconds |
14
+ ./spec/integration/call_sheet_spec.rb[1:3:1] | passed | 0.00019 seconds |
15
+ ./spec/integration/call_sheet_spec.rb[1:3:2] | passed | 0.00016 seconds |
16
+ ./spec/integration/call_sheet_spec.rb[1:3:3] | passed | 0.00017 seconds |
17
+ ./spec/integration/passing_step_arguments_spec.rb[1:1:1] | passed | 0.00113 seconds |
18
+ ./spec/integration/passing_step_arguments_spec.rb[1:2:1] | passed | 0.0002 seconds |
19
+ ./spec/integration/passing_step_arguments_spec.rb[1:3:1] | passed | 0.00221 seconds |
20
+ ./spec/integration/publishing_step_events_spec.rb[1:1:1] | passed | 0.00194 seconds |
21
+ ./spec/integration/publishing_step_events_spec.rb[1:1:2] | passed | 0.00042 seconds |
22
+ ./spec/integration/publishing_step_events_spec.rb[1:2:1] | passed | 0.00032 seconds |
23
+ ./spec/integration/publishing_step_events_spec.rb[1:2:2] | passed | 0.00027 seconds |
metadata CHANGED
@@ -1,29 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: call_sheet
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Riley
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-11-10 00:00:00.000000000 Z
11
+ date: 2015-11-12 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: deterministic
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - ">="
18
- - !ruby/object:Gem::Version
19
- version: 0.15.3
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - ">="
25
- - !ruby/object:Gem::Version
26
- version: 0.15.3
27
13
  - !ruby/object:Gem::Dependency
28
14
  name: kleisli
29
15
  requirement: !ruby/object:Gem::Requirement