roper 1.0.0.rc1 → 1.0.0.rc2

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: 6e80e50dbaa70895a5a752da19af3f4585ff75ea
4
- data.tar.gz: 0e13f8c6c36bfe611688ebaa6acec97cd223c3b4
3
+ metadata.gz: f55471893a985333ae259a60a6673d9d1e14f4d3
4
+ data.tar.gz: 5b53c810c583a03697dbda89ce40a913bcf4a9ed
5
5
  SHA512:
6
- metadata.gz: bb4a7422c03f7999b8914e26b7f06211275b548374cc13ab68113a1b1eece4c605a341bfc8b7c42e2c03740070c7b10b7cdc5547328467a37819d98a5bc6b90a
7
- data.tar.gz: ce449ddfd8ca058598827eca51ddce6c8b94144e46308279ccf1953521ff51f3f0898f85c5c27ec65268c65253f794e9edaafcfc917e83092ba613a8cbad4f78
6
+ metadata.gz: 8491d4579ccc48941a5bc57188a3736f9185eeaea4964a33f0e28fcfc3b1f4ddf8b1ef8f1ac790378f9f0088fcea1bc7bcafb54ff75a185f40a6b67755bb701c
7
+ data.tar.gz: 4e36caead27d603da5816e507f1261ca3770052aff9be44161686948a321eb239115a2cf322663efb583ac1d93210ba68fe9b66c46ebdcdf903b8f3e05098c98
data/exe/roper CHANGED
@@ -13,7 +13,7 @@ subcommand_option_handling :normal
13
13
  arguments :strict
14
14
  sort_help :manually
15
15
 
16
- desc "Pulls in github repo locally and runs docker-compose up on it."
16
+ desc "Pulls in github repo locally and runs docker-compose up on it"
17
17
  command :lasso do |c|
18
18
  c.desc "* The repo full name '<owner>/<name>'"
19
19
  c.flag :r, :repo
@@ -22,17 +22,17 @@ command :lasso do |c|
22
22
  c.flag :b, :branch
23
23
  c.default_value "master"
24
24
 
25
- c.desc "The sha reference that we will post to."
26
- c.flag :r, :ref
25
+ c.desc "The sha reference that we will post to"
26
+ c.flag :s, :sha
27
27
 
28
- c.desc "A URL to a build status page."
28
+ c.desc "A URL to a build status page"
29
29
  c.flag :l, :status_url
30
30
 
31
- c.desc "URL protocol to use in target_url for final traefik hosted container."
31
+ c.desc "URL protocol to use in target_url for final traefik hosted container"
32
32
  c.default_value "https"
33
33
  c.flag :p, :protocol
34
34
 
35
- c.desc "URL domain to use in target_url for final traefik hosted container."
35
+ c.desc "URL domain to use in target_url for final traefik hosted container"
36
36
  c.flag :d, :domain
37
37
 
38
38
  c.action do |global_options, options, args|
@@ -43,7 +43,7 @@ command :lasso do |c|
43
43
  end
44
44
  end
45
45
 
46
- desc "Runs docker-compose down on local copy of repo and deletes the repo contents."
46
+ desc "Runs docker-compose down on local copy of repo and deletes the repo contents"
47
47
  command :release do |c|
48
48
  c.desc "* The repo full name '<owner>/<name>'"
49
49
  c.flag :r, :repo
data/lib/roper/cli.rb CHANGED
@@ -41,7 +41,7 @@ module Roper
41
41
 
42
42
  private
43
43
  def ref
44
- @options[:ref] || begin
44
+ @options[:sha] || begin
45
45
  @git.mount || @git.update
46
46
  @git.ref
47
47
  end
data/lib/roper/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Roper
4
- VERSION = "1.0.0.rc1"
4
+ VERSION = "1.0.0.rc2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: roper
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.rc1
4
+ version: 1.0.0.rc2
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Kinzer