sfn 2.0.4 → 2.0.6

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: 7ec2b970eb2b842d5385969e6e130302c4ad10fd
4
- data.tar.gz: 2c1ff158c14bf55b93dff4c8addd42d49b59749d
3
+ metadata.gz: 932b1dd44a660a08997530244880226b82ccce30
4
+ data.tar.gz: 3d6b9402858c40a92627c1b8b2b60062fc363a99
5
5
  SHA512:
6
- metadata.gz: 8a72a62cb2247ca37f732980ede4e9a86e43d59ad4e6794113ddefa9237d709fd8afdc670a1ddc35d3b752d48c713955d32895d79d2839ef60e45224f4f7953d
7
- data.tar.gz: 4b63a46ea427ba7e478165bcadc7fa5f31e12e0d9ee90d1e0a91d865e3d257cf1dd8878a4876f0439d97299eaa1e9c66026dcf118e215526abff00930fb1592e
6
+ metadata.gz: afe324f57a37e74133a776a33ee1bd1fcf068085dc13737627c24b2f284c9920923ee87f0838d3396143d4e6b017410c39b38f25cf612946ba1d1d7d70cf01ba
7
+ data.tar.gz: 9e81542e7eaeb6ea50ba7cf4459f7e055897be01bffb28e43f889b6cd9d0149f027ae0c759fada3e241b32e9138b4d24352587687b63980cdc7404ade050c4d8
@@ -1,3 +1,6 @@
1
+ # v2.0.6
2
+ * [fix] Remove bundler assumption within `init` command (#114)
3
+
1
4
  # v2.0.4
2
5
  * [enhancement] Add `--debug` flag
3
6
  * [enhancement] Allow nested stacks to be disabled (apply_nesting :none)
@@ -46,7 +46,11 @@ module Sfn
46
46
  end
47
47
  ui.info 'Installing project bundle'
48
48
  Dir.chdir(path) do
49
- Bundler.clean_system('bundle install')
49
+ if(defined?(Bundler))
50
+ Bundler.clean_system('bundle install')
51
+ else
52
+ system('bundle install')
53
+ end
50
54
  end
51
55
  ui.info 'Project initialization complete!'
52
56
  ui.puts " Project path -> #{File.expand_path(path)}"
@@ -1,4 +1,4 @@
1
1
  module Sfn
2
2
  # Current library version
3
- VERSION = Gem::Version.new('2.0.4')
3
+ VERSION = Gem::Version.new('2.0.6')
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sfn
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.4
4
+ version: 2.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Roberts
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-04 00:00:00.000000000 Z
11
+ date: 2016-02-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bogo-cli