bimble 1.0.2 → 1.0.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 +4 -4
- data/.ruby-version +1 -0
- data/.travis.yml +1 -1
- data/CHANGELOG.md +4 -0
- data/Gemfile +1 -2
- data/lib/bimble/bundler.rb +1 -1
- data/lib/bimble/version.rb +1 -1
- data/spec/git_strategy_spec.rb +3 -3
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4d9477d398cc0be89f67d8fa402171805f9a3f3b
|
4
|
+
data.tar.gz: 054d3a4c9f513910f214d9f98d5ee864e666712c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86b97444259cd3da9d141034dad9fd2a824acb68074b7c5783f7473af5a3707de9b54bb775dea40da60a2778f8b6a3da19074f2dda0be2af13f65f86f677d5e2
|
7
|
+
data.tar.gz: 62f9c1be29dabc7057faa29e2cc972451002fa669cc22a1b48238808b61a18503ec6f799d1c7912f130e5df1b08585fbebe5960327c92b4ebbaabba27b38fc71
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.1.4
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
data/lib/bimble/bundler.rb
CHANGED
data/lib/bimble/version.rb
CHANGED
data/spec/git_strategy_spec.rb
CHANGED
@@ -15,9 +15,9 @@ require 'spec_helper'
|
|
15
15
|
|
16
16
|
it "should get all appropriate files" do
|
17
17
|
@bimble.in_working_copy do
|
18
|
-
File.exists?('Gemfile').should
|
19
|
-
File.exists?('Gemfile.lock').should
|
20
|
-
File.exists?('bimble-test.gemspec').should
|
18
|
+
File.exists?('Gemfile').should eq(true)
|
19
|
+
File.exists?('Gemfile.lock').should eq(true)
|
20
|
+
File.exists?('bimble-test.gemspec').should eq(true)
|
21
21
|
end
|
22
22
|
end
|
23
23
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bimble
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Smith
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-11-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: git
|
@@ -189,6 +189,7 @@ extra_rdoc_files: []
|
|
189
189
|
files:
|
190
190
|
- ".gitignore"
|
191
191
|
- ".rspec"
|
192
|
+
- ".ruby-version"
|
192
193
|
- ".travis.yml"
|
193
194
|
- CHANGELOG.md
|
194
195
|
- Gemfile
|
@@ -244,7 +245,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
244
245
|
version: '0'
|
245
246
|
requirements: []
|
246
247
|
rubyforge_project:
|
247
|
-
rubygems_version: 2.2.
|
248
|
+
rubygems_version: 2.2.2
|
248
249
|
signing_key:
|
249
250
|
specification_version: 4
|
250
251
|
summary: A gem and executable to check out a repo, run bundle update, then commit
|