flo 0.0.4 → 0.0.5

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
- SHA1:
3
- metadata.gz: 69f63279e4c56e57ed73fdae86f3e29fb63614ed
4
- data.tar.gz: d590c9a27922322a1deef9249e7811c4e1ffa9de
2
+ SHA256:
3
+ metadata.gz: 3a7dcfedddc7f87b830758dedd133ccb5cb251849884f194c7ada35c4dedb5bc
4
+ data.tar.gz: 3700a4ec72d98df21b1ffeca29102a88b942bd17d807bd70537d420925d863de
5
5
  SHA512:
6
- metadata.gz: 863b59f6aedb594b5cfd760b711ea937c4050b3291dde5d5091a2de28b3c213c739e5b73c620cbf35140da5376bdde9fe07942747084e448f91fc03bf387e557
7
- data.tar.gz: '0670183aca0e682231fb2a366954fe198e71f21509357b50f4e59dc9ab51dfb850fe2b57e7d70cf6d50bfa8e60e5ac0f896a30934abcb2ff2e270b535dceb226'
6
+ metadata.gz: ab88891cde1ca0c8bb53566f06aaa342bc2defdfacbeae111c3fa51ae9eef2cf0d37009045ea48c3ee465149f90eae448654b4a2804be8b2a744a97a9fddb49e
7
+ data.tar.gz: 1b3d2ce0e8b400142ef8db61b72c38e2300290a7c6a2f35f77640b88614600d34b698f55c605d5266f6cd932c67cc2f06485fb4d816fd9503642393aacad5ea3
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- Copyright (c) 2017, Salesforce.com, Inc.
1
+ Copyright (c) 2019, Salesforce.com, Inc.
2
2
  All rights reserved.
3
3
 
4
4
  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
data/README.md CHANGED
@@ -101,7 +101,7 @@ end
101
101
 
102
102
  ## License
103
103
 
104
- >Copyright (c) 2017, Salesforce.com, Inc.
104
+ >Copyright (c) 2019, Salesforce.com, Inc.
105
105
  >All rights reserved.
106
106
  >
107
107
  >Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
data/Rakefile CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
data/bin/flo CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- # Copyright © 2017, Salesforce.com, Inc.
3
+ # Copyright © 2019, Salesforce.com, Inc.
4
4
  # All Rights Reserved.
5
5
  # Licensed under the BSD 3-Clause license.
6
6
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
27
27
  spec.add_dependency 'gpgme'
28
28
  spec.add_dependency 'cri'
29
29
 
30
- spec.add_development_dependency 'bundler', '~> 1.5'
30
+ spec.add_development_dependency 'bundler'
31
31
  spec.add_development_dependency 'rake'
32
32
  spec.add_development_dependency 'minitest'
33
33
  spec.add_development_dependency 'minitest-proveit'
data/lib/flo.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -53,7 +53,7 @@ module Flo
53
53
  description(cmd[:description])
54
54
 
55
55
  run do |opts, arguments, command|
56
- flo_runner.execute(command.name, arguments.dup.push(opts))
56
+ flo_runner.execute(command.name, arguments.to_a.push(opts))
57
57
  end
58
58
  end
59
59
  end
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,8 +1,8 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
5
5
 
6
6
  module Flo
7
- VERSION = "0.0.4"
7
+ VERSION = "0.0.5"
8
8
  end
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
@@ -1,4 +1,4 @@
1
- # Copyright © 2017, Salesforce.com, Inc.
1
+ # Copyright © 2019, Salesforce.com, Inc.
2
2
  # All Rights Reserved.
3
3
  # Licensed under the BSD 3-Clause license.
4
4
  # For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Powers
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-02 00:00:00.000000000 Z
11
+ date: 2019-03-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cleanroom
@@ -56,16 +56,16 @@ dependencies:
56
56
  name: bundler
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - "~>"
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
- version: '1.5'
61
+ version: '0'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - "~>"
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
- version: '1.5'
68
+ version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rake
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -219,7 +219,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
219
219
  version: '0'
220
220
  requirements: []
221
221
  rubyforge_project:
222
- rubygems_version: 2.5.2
222
+ rubygems_version: 2.7.6
223
223
  signing_key:
224
224
  specification_version: 4
225
225
  summary: Simple developer workflow automation