git_flo 0.0.1 → 0.0.2

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: 3753d587294f1d4ee16688be1a420d10ce1244eb
4
- data.tar.gz: 979bb2260edac4ebae81513a23e5e94f7e9ab9da
3
+ metadata.gz: a0ca2b1fcc8e895e6316c6e047ce4ba8f33a4c1f
4
+ data.tar.gz: b4576489d511a491fca488f882894c91375c65c4
5
5
  SHA512:
6
- metadata.gz: 84c501538a113bf12d667bc80861e906f171e39c09fe1b16b9b3f8ceba6618ab8fef908a416801c648c610c6d5331d62e99a9204a99abb33d9fed1ad61636f27
7
- data.tar.gz: a1b092f2b31e05cea7f567251148c06647ecb610cf14fc16034b6499c04df1ee24087981926b923b3ab0dc94be5209ead13ca9ef3b82ed97c0d14eacb0866dc6
6
+ metadata.gz: 302319340d223f48a4b6c82c4618e3726aceee2990b47910b20e62732ddad515d04fd023d57611491ef863acb03a68e2377cdea5a056ee7a2053564942c545a0
7
+ data.tar.gz: c3f0299cfeb9881097b3f43c585fbfe96fd1575fa4a235eaeb346f094899f7c6ac55c6a5e9ab542e2acfc9b9ea27ff6fc860100657e91530df50ea27cd5a1e52
data/.gitignore CHANGED
@@ -7,3 +7,4 @@
7
7
  /pkg/
8
8
  /spec/reports/
9
9
  /tmp/
10
+ *.gem
data/README.md CHANGED
@@ -1,4 +1,5 @@
1
1
  # GitFlo
2
+ [![Gem Version](https://badge.fury.io/rb/git_flo.svg)](https://badge.fury.io/rb/git_flo) [![Code Climate](https://codeclimate.com/github/codeclimate/codeclimate/badges/gpa.svg)](https://codeclimate.com/github/codeclimate/codeclimate) [![Build Status](https://semaphoreci.com/api/v1/justinpowers/git_flo/branches/master/shields_badge.svg)](https://semaphoreci.com/justinpowers/git_flo)
2
3
 
3
4
  GitFlo is a Git plugin for the Flo workflow automation library. If you aren't familiar with Flo, then please start [here](https://github.com/salesforce/flo)
4
5
 
@@ -49,7 +50,7 @@ perform :git_flo, :push, { branch: 'my_new_branch' }
49
50
 
50
51
  ## Contributing
51
52
 
52
- 1. Fork it (http://github.com/your-github-username/flo/fork )
53
+ 1. Fork it (http://github.com/your-github-username/git_flo/fork )
53
54
  2. Create your feature branch (`git checkout -b my-new-feature`)
54
55
  3. Commit your changes (`git commit -am 'Add some feature'`)
55
56
  4. Push to the branch (`git push origin my-new-feature`)
@@ -5,6 +5,7 @@
5
5
 
6
6
  require 'ostruct'
7
7
  require 'rugged'
8
+ require 'flo/provider/base'
8
9
 
9
10
  module GitFlo
10
11
  MissingRefError = Class.new(StandardError)
@@ -12,7 +13,7 @@ end
12
13
 
13
14
  module Flo
14
15
  module Provider
15
- class GitFlo
16
+ class GitFlo < Flo::Provider::Base
16
17
 
17
18
  def initialize(opts={})
18
19
  @repo_location = opts[:repo_location] || '.'
@@ -4,5 +4,5 @@
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 GitFlo
7
- VERSION = "0.0.1"
7
+ VERSION = "0.0.2"
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git_flo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Powers
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-05-19 00:00:00.000000000 Z
12
+ date: 2017-09-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler