git_flower 0.1.2 → 0.1.3

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: 219b7cb4f97f5c3bd48bba2cb05d9bc3791cab5f
4
- data.tar.gz: b8fd1884e0f8cde2508a9c81ddb8f167d8f40d09
3
+ metadata.gz: 6f30c2286addf8b6234c28f4c6c6eb2735bc277c
4
+ data.tar.gz: 97c03ad37b98adcd18a503b9f1bfaf824d9ff83f
5
5
  SHA512:
6
- metadata.gz: ea9d0473e1176e31aacaedb779324fe1cf6db314fa9786bd5435ea56b6be51674c40e019286559a129447e072f8d18f156fabfba436f927cb0f72dc971874369
7
- data.tar.gz: 78932f0c4e5541d926f0dae0615a548f90c483d2236250e9888acded5b069ea18c2b625968d4dd7665f780ce40f55705a9b5e27fbe6f11c65a9b6cf88acf6bc3
6
+ metadata.gz: ea2a592614d095d47d5954fe5c26636f64502288bdc7e066342b2cc0f42fba4f7917ea45fffa4f9c7becc7a8924b44bdf00dbb8d0aa2226059dace66993f497b
7
+ data.tar.gz: 81da16fa907d540b28cfce60493672afa5a805a5888a1924af9884413575e79113855a5d225f0148ea58d8d4b0e1d095c5c5eeaaf877319e5fc37e17f9b39651
data/.gitlab-ci.yml ADDED
@@ -0,0 +1,11 @@
1
+ image: ruby:2.2
2
+
3
+ before_script:
4
+ - ruby -v
5
+ - which ruby
6
+ - gem install bundler --no-ri --no-rdoc
7
+ - bundle install
8
+
9
+ rspec:
10
+ script:
11
+ - bundle exec rspec
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- git_flower (0.1.2)
4
+ git_flower (0.1.3)
5
5
  activesupport (~> 5.1.2)
6
6
  faraday (~> 0.9.0)
7
7
  git (~> 1.3.0)
@@ -31,6 +31,7 @@ GEM
31
31
  descendants_tracker (0.0.4)
32
32
  thread_safe (~> 0.3, >= 0.3.1)
33
33
  diff-lcs (1.3)
34
+ docile (1.1.5)
34
35
  equalizer (0.0.11)
35
36
  excon (0.57.1)
36
37
  faraday (0.9.2)
@@ -40,6 +41,7 @@ GEM
40
41
  git (1.3.0)
41
42
  i18n (0.8.5)
42
43
  ice_nine (0.11.2)
44
+ json (2.1.0)
43
45
  minitest (5.10.2)
44
46
  multipart-post (2.0.0)
45
47
  public_suffix (2.0.5)
@@ -57,6 +59,11 @@ GEM
57
59
  diff-lcs (>= 1.2.0, < 2.0)
58
60
  rspec-support (~> 3.6.0)
59
61
  rspec-support (3.6.0)
62
+ simplecov (0.14.1)
63
+ docile (~> 1.1.0)
64
+ json (>= 1.8, < 3)
65
+ simplecov-html (~> 0.10.0)
66
+ simplecov-html (0.10.1)
60
67
  thor (0.19.4)
61
68
  thread_safe (0.3.6)
62
69
  tracker_api (0.2.9)
@@ -84,6 +91,7 @@ DEPENDENCIES
84
91
  git_flower!
85
92
  rake (~> 10.0)
86
93
  rspec (~> 3.0)
94
+ simplecov (~> 0.14)
87
95
 
88
96
  BUNDLED WITH
89
97
  1.15.1
data/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # GitFlower
2
2
 
3
+ [![build status](https://gitlab.com/alexwilkinson/git-flower/badges/master/build.svg)](https://gitlab.com/alexwilkinson/git-flower/commits/master)
4
+ [![coverage report](https://gitlab.com/alexwilkinson/git-flower/badges/master/coverage.svg)](https://gitlab.com/alexwilkinson/git-flower/commits/master)
5
+ [![Gem Version](https://badge.fury.io/rb/git_flower.svg)](https://badge.fury.io/rb/git_flower)
6
+
3
7
  GitFlower is a command-line utility that starts features and hotfixes using the git-flow branching model and creates corresponding features and bugs on PivotalTracker using the Pivotal API. Link tickets in Pivotal with your git-flow branches without leaving the comfort of the command line!
4
8
 
5
9
  While GitFlower only supports Pivotal at the moment, the plan is to add support for all popular project management systems. Once I have developed an adapter system for easily working with multiple APIs, I will publish my priority list on this README.
data/git_flower.gemspec CHANGED
@@ -21,10 +21,13 @@ Gem::Specification.new do |spec|
21
21
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
22
  spec.require_paths = ["lib"]
23
23
 
24
+ spec.required_ruby_version = '>= 2.2.2'
25
+
24
26
  spec.add_development_dependency "bundler", "~> 1.15"
25
27
  spec.add_development_dependency "rake", "~> 10.0"
26
28
  spec.add_development_dependency "rspec", "~> 3.0"
27
29
  spec.add_development_dependency "byebug"
30
+ spec.add_development_dependency "simplecov", "~>0.14"
28
31
 
29
32
  spec.add_dependency "git", "~> 1.3.0"
30
33
  spec.add_dependency "thor", "~> 0.19.4"
@@ -1,3 +1,3 @@
1
1
  module GitFlower
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git_flower
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Wilkinson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-07-12 00:00:00.000000000 Z
11
+ date: 2017-07-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -66,6 +66,20 @@ dependencies:
66
66
  - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: simplecov
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '0.14'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '0.14'
69
83
  - !ruby/object:Gem::Dependency
70
84
  name: git
71
85
  requirement: !ruby/object:Gem::Requirement
@@ -147,6 +161,7 @@ extensions: []
147
161
  extra_rdoc_files: []
148
162
  files:
149
163
  - ".gitignore"
164
+ - ".gitlab-ci.yml"
150
165
  - ".rspec"
151
166
  - ".travis.yml"
152
167
  - CODE_OF_CONDUCT.md
@@ -182,7 +197,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
182
197
  requirements:
183
198
  - - ">="
184
199
  - !ruby/object:Gem::Version
185
- version: '0'
200
+ version: 2.2.2
186
201
  required_rubygems_version: !ruby/object:Gem::Requirement
187
202
  requirements:
188
203
  - - ">="