bundlegem 1.1.0 → 1.1.1

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
  SHA256:
3
- metadata.gz: 59cedb35eb5e27205162bbf4cab34f99d0269f2becdaa7e0544b614bad7510eb
4
- data.tar.gz: 79334971e8ac017e651e5aeab129ede8e5be7b8ba4491fdcbed360d9286ce795
3
+ metadata.gz: de640bbb2cb851cc3c73aa4a0b80bddcede13cabd78a731f1785b49a2b8fa43e
4
+ data.tar.gz: a464309f3d3dc39e2a1bef0355101e716988916bdc26c578b132c66adf05212c
5
5
  SHA512:
6
- metadata.gz: c728247b2e279c30b46efebb45d26f52cca5c052286bedc04a55f190b3c88242db8fe4b5e4ae7e22210c67c0fb84d2e80569b43da151d24e0a63b469925d7bfc
7
- data.tar.gz: cf6e1c50c39fa472fced36fc8175e716e43d7d61563f3e0efdce4a83ddecdc72733b0a956c9a111e1f1c568285d3e7d8171740af8d2864a7540b94b5a1b2df2a
6
+ metadata.gz: b818b04951a5873203fe489ea0f9f0cd85e62f3d10f7cf0799af7f3d5467de144ab13baac6b8ad635f1f2bc197e182dceab5c1db72dd0fa3e595fa3bdb31a2b0
7
+ data.tar.gz: 9baab7152083f5ab0456a08524a763505b7d944d97acfabaf58707af6b28a944a70eda871ecd150fcf209bef41a4cb64aac178de626f19038abb8b63801cf584
data/changelog CHANGED
@@ -1,5 +1,6 @@
1
1
  ** Planned 0.1.x **
2
2
  - TBD
3
+ - Bugfix: Changes working directory before running bootstrap_commands
3
4
 
4
5
  ** 0.1.0 **
5
6
  - Feature: Drops .bundlegem file in favor of bundlegem.yml in templates
@@ -96,7 +96,9 @@ module Bundlegem
96
96
  if @tconf[:bootstrap_command]
97
97
  puts "Executing bootstrap_command"
98
98
  puts @tconf[:bootstrap_command]
99
- `#{@tconf[:bootstrap_command]}`
99
+ Dir.chdir(target) do
100
+ `#{@tconf[:bootstrap_command]}`
101
+ end
100
102
  end
101
103
 
102
104
  puts "\nComplete."
@@ -1,3 +1,3 @@
1
1
  module Bundlegem
2
- VERSION = "1.1.0"
2
+ VERSION = "1.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundlegem
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - TheNotary
@@ -222,9 +222,9 @@ licenses:
222
222
  - MIT
223
223
  metadata:
224
224
  bug_tracker_uri: https://github.com/TheNotary/bundlegem/issues
225
- changelog_uri: https://github.com/TheNotary/bundlegem/releases/tag/v1.1.0
226
- documentation_uri: https://api.rubyonrails.org/v1.1.0/
227
- source_code_uri: https://github.com/TheNotary/bundlegem/tree/v1.1.0
225
+ changelog_uri: https://github.com/TheNotary/bundlegem/releases/tag/v1.1.1
226
+ documentation_uri: https://api.rubyonrails.org/v1.1.1/
227
+ source_code_uri: https://github.com/TheNotary/bundlegem/tree/v1.1.1
228
228
  rdoc_options: []
229
229
  require_paths:
230
230
  - lib