cobra_commander 0.1.1 → 0.1.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
  SHA1:
3
- metadata.gz: 91660f448535600d40a46445e412e45ff4eeeb10
4
- data.tar.gz: 2ccb7102130a937e86cd387cd65d6053b1933558
3
+ metadata.gz: 3a7c678173bc6ebeace6286a78b7bd0268c74300
4
+ data.tar.gz: 784e159d2a26d02842dce69296578bde9df37345
5
5
  SHA512:
6
- metadata.gz: '008ca06433fad82bcfade84a3af06b6785f6ce28015bf004c152c2c325aff4a67a7d964b960dc27d28fdd2a6cf70eb375322f73e8d12603f5dadc5293a3da569'
7
- data.tar.gz: 0e8a1c7f20f78554a71492a6fd05dddf38f22000e5c6fd67e76f23d4f23a9763b3fa4da41126030cba5fcba0a8c1350bb52e39d17ceb36f376d9ce484ee5d51a
6
+ metadata.gz: 3ff4cb4752fdcb18429da501d8dd9eac5c98f6f6a330a122ceafd1d5b2815639b65d3c0634be6b60e9e00d0a6a13eb4d603ca648cee57e38170e99168925a918
7
+ data.tar.gz: 904df2c43fbccb55a5002e0e83e4baa9fe237e8f46bbf24088fe6b3a7e1b82304fff7e2cb0a72e55f8da68e78f3b40d4155e70dba62c5194ced18ec78cfd8862
data/CHANGELOG.md ADDED
@@ -0,0 +1,27 @@
1
+ # Change Log
2
+
3
+ ## Version 0.1.2 - 2017-05-08
4
+
5
+ ### Fixed
6
+
7
+ * Functions correctly when executing against a frozen gem bundle (`bundle install --deployment`). PR [#6](https://github.com/powerhome/cobra_commander/pull/6)
8
+
9
+ ## Version 0.1.1 - 2017-05-05
10
+
11
+ ### Fixed
12
+
13
+ * Rename app from `cbra` to `cobra_commander`. PR [#5](https://github.com/powerhome/cobra_commander/pull/5)
14
+
15
+ ### Added
16
+
17
+ * Add `changes` functionality. PR [#4](https://github.com/powerhome/cobra_commander/pull/4)
18
+
19
+ ## Version 0.1.0 - 2017-05-03
20
+
21
+ ### Added
22
+
23
+ * Add `graph` functionality. PR [#3](https://github.com/powerhome/cobra_commander/pull/3)
24
+
25
+ * Add `ls` functionality. PR [#2](https://github.com/powerhome/cobra_commander/pull/2)
26
+
27
+ * Implement basic CLI framework. PR [#1](https://github.com/powerhome/cobra_commander/pull/1)
@@ -44,7 +44,7 @@ module CobraCommander
44
44
 
45
45
  def component_dependencies
46
46
  bundler_definition.dependencies.select do |dep|
47
- dep.source&.is_a_path?
47
+ dep.source&.is_a_path? && dep.source.path.to_s != "."
48
48
  end
49
49
  end
50
50
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CobraCommander
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cobra_commander
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Langfeld
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2017-05-05 00:00:00.000000000 Z
12
+ date: 2017-05-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: thor
@@ -153,6 +153,7 @@ files:
153
153
  - ".rspec"
154
154
  - ".rubocop.yml"
155
155
  - ".travis.yml"
156
+ - CHANGELOG.md
156
157
  - CODE_OF_CONDUCT.md
157
158
  - Gemfile
158
159
  - Guardfile