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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e01bb81f772b382d64984134c4559ae87948236d
4
- data.tar.gz: ba780786a3390ad08919c5bf13a600d02f69765f
3
+ metadata.gz: 4d9477d398cc0be89f67d8fa402171805f9a3f3b
4
+ data.tar.gz: 054d3a4c9f513910f214d9f98d5ee864e666712c
5
5
  SHA512:
6
- metadata.gz: 8977c456df130c8fc78cf62b9a87722b8ef6d7aa0235b98b5815ebf0b6107cb3aa4d7677131ac2d6ef909f93b6fea9911c67c4d9f638c1d49eec80aca18a13dd
7
- data.tar.gz: 1329196f01c261455fda77eabd8a8d09f603ef5e803b9a369c4fb143ed0755d1dbd4df18bdd443f213a4bd8858af335ebf91e30cc925d3596a7019d22962143d
6
+ metadata.gz: 86b97444259cd3da9d141034dad9fd2a824acb68074b7c5783f7473af5a3707de9b54bb775dea40da60a2778f8b6a3da19074f2dda0be2af13f65f86f677d5e2
7
+ data.tar.gz: 62f9c1be29dabc7057faa29e2cc972451002fa669cc22a1b48238808b61a18503ec6f799d1c7912f130e5df1b08585fbebe5960327c92b4ebbaabba27b38fc71
@@ -0,0 +1 @@
1
+ 2.1.4
@@ -1,5 +1,5 @@
1
1
  rvm:
2
- - 2.1.0
2
+ - 2.1.4
3
3
  notifications:
4
4
  irc:
5
5
  channels:
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.3
4
+
5
+ Ignore local bundler config, which interferes with bimbling on Heroku.
6
+
3
7
  ## 1.0.2
4
8
 
5
9
  Fix bug whereby wrong gemfile would be used if run inside bundle exec.
data/Gemfile CHANGED
@@ -1,7 +1,6 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- #ruby=2.1.0
4
- #ruby-gemset=bimble
3
+ ruby '2.1.4'
5
4
 
6
5
  # Specify your gem's dependencies in bimble.gemspec
7
6
  gemspec
@@ -3,7 +3,7 @@ module Bimble
3
3
  def self.bundle_update
4
4
  if File.exists?("Gemfile")
5
5
  Bundler.with_clean_env do
6
- `sh -c "bundle update"`
6
+ puts `sh -c "BUNDLE_IGNORE_CONFIG=true bundle update"`
7
7
  end
8
8
  end
9
9
  end
@@ -1,3 +1,3 @@
1
1
  module Bimble
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
3
  end
@@ -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 be_true
19
- File.exists?('Gemfile.lock').should be_true
20
- File.exists?('bimble-test.gemspec').should be_true
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.2
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-05-20 00:00:00.000000000 Z
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.0
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