sleet 0.5.1 → 0.5.2

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
  SHA256:
3
- metadata.gz: 468840169e965b440a007d755c413a5aea8c4b1513eb918ba6d449b0795b44fd
4
- data.tar.gz: 8cf53f2fdfe7d1e204e172ed522fa27edc7b6fe075416b441785ba130cbadd18
3
+ metadata.gz: da6449a953da99cd33a455fabe362c43289fe5f8dae44383a94aa374b93096d7
4
+ data.tar.gz: 11fb84037b64b725d164f24e923e0c9fd49583170f8b2bb508051c885a91f3fb
5
5
  SHA512:
6
- metadata.gz: 490094a454da75a7f8e06bff8c006351ce170b16bd7d87f144905705d16251cee46391c086c0daa8217ad772f06ee7b466ae12d553623c8da75715367828bde2
7
- data.tar.gz: 2071a3299339a6008ca98bead1e4e2c1f7b77b45a78825fa3463d9eff5362f009c91ce85df34d0b7e4e4c6842068b91a092cc67a3179228dcd363a083a4e4675
6
+ metadata.gz: 11eabd22481ae44fb09ad86877d0e498cb02ebfe7214830fd47829349ebeeb44be86fe6a1474826fca1746c6fcd4b2c133a5f57412003018ab3111762dda2635
7
+ data.tar.gz: db601fb23667d2d3019fb4ad0d3e8006bc50f04093445891fa8cf53eaf71f31512c766c6fd499b410d7dd4a91134f5fde76301ea3ceea5dee44236f224994984
data/.sleet.yml CHANGED
@@ -1 +1,4 @@
1
1
  output_file: 'spec/.rspec_example_statuses'
2
+ username: coreyja
3
+ workflows:
4
+ test: spec/.rspec_example_statuses
@@ -1,13 +1,17 @@
1
1
  # Changelog
2
2
 
3
- ## [v0.5.1](https://github.com/coreyja/sleet/tree/v0.5.1) (2020-06-14)
3
+ ## [v0.5.2](https://github.com/coreyja/sleet/tree/v0.5.2) (2020-06-14)
4
4
 
5
- [Full Changelog](https://github.com/coreyja/sleet/compare/v0.5.0...v0.5.1)
5
+ [Full Changelog](https://github.com/coreyja/sleet/compare/v0.5.1...v0.5.2)
6
6
 
7
7
  **Merged pull requests:**
8
8
 
9
9
  - bug: Fix bug in error message when no upstream exists [\#79](https://github.com/coreyja/sleet/pull/79) ([coreyja](https://github.com/coreyja))
10
10
 
11
+ ## [v0.5.1](https://github.com/coreyja/sleet/tree/v0.5.1) (2020-06-14)
12
+
13
+ [Full Changelog](https://github.com/coreyja/sleet/compare/v0.5.0...v0.5.1)
14
+
11
15
  ## [v0.5.0](https://github.com/coreyja/sleet/tree/v0.5.0) (2020-06-14)
12
16
 
13
17
  [Full Changelog](https://github.com/coreyja/sleet/compare/v0.4.3...v0.5.0)
@@ -64,7 +64,7 @@ module Sleet
64
64
 
65
65
  def must_have_an_upstream_branch!
66
66
  !current_branch.remote.nil? ||
67
- raise(Error, "No upstream branch set for the current branch of #{repo.current_branch_name}")
67
+ raise(Error, "No upstream branch set for the current branch of #{current_branch_name}")
68
68
  end
69
69
 
70
70
  def upstream_remote_must_be_github!
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Sleet
4
- VERSION = '0.5.1'
4
+ VERSION = '0.5.2'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sleet
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Corey Alexander