git_flo 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/README.md +2 -1
- data/lib/flo/provider/git_flo.rb +2 -1
- data/lib/git_flo/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a0ca2b1fcc8e895e6316c6e047ce4ba8f33a4c1f
|
4
|
+
data.tar.gz: b4576489d511a491fca488f882894c91375c65c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 302319340d223f48a4b6c82c4618e3726aceee2990b47910b20e62732ddad515d04fd023d57611491ef863acb03a68e2377cdea5a056ee7a2053564942c545a0
|
7
|
+
data.tar.gz: c3f0299cfeb9881097b3f43c585fbfe96fd1575fa4a235eaeb346f094899f7c6ac55c6a5e9ab542e2acfc9b9ea27ff6fc860100657e91530df50ea27cd5a1e52
|
data/.gitignore
CHANGED
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/
|
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`)
|
data/lib/flo/provider/git_flo.rb
CHANGED
@@ -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] || '.'
|
data/lib/git_flo/version.rb
CHANGED
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.
|
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-
|
12
|
+
date: 2017-09-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|