stevenson 2.5.0 → 2.5.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
  SHA1:
3
- metadata.gz: 97d928ffe45af65dcbbefbbc752493eb19222b7f
4
- data.tar.gz: '0307814dafdfc5e724fc2488e5a385cfc58e3b68'
3
+ metadata.gz: 40ffeb6d701cc29d555e58a90f8a84eafec800f6
4
+ data.tar.gz: 4f56c7fb7906d611000ef65434de44efeffb752b
5
5
  SHA512:
6
- metadata.gz: 005f50c0d0c0978484e0baa1c083e2c1a2d3454b439735f153bb60f440d1987ec1705627270b72201dd45fad47f511654b69c0780a72cf3e16483c767e9f73b3
7
- data.tar.gz: 3ce5a16de26567a351b248ee35b25187dd79c41d84f8c6112db3564175a920ddb4cd933c932aeda551b3aa79946d20198b72a1c330ac745d7cfdb0201475371d
6
+ metadata.gz: 2f1a131b570e81d675e4ec45843dedbaffd1703009e581830101e8b4205fb3d5d0abe06dfcd1ee77d442d3b17e64cd14b8ec6088160a4bf00c96daf7eaf9d6bc
7
+ data.tar.gz: 9057a28094a1e0322b1e94595e54ec606e709e9babc86b0129895140231d17dcd763bf9fb50239be5287fa27826ea85eb8343a541e555884ee05fb00865ec1c1
@@ -1,4 +1,7 @@
1
- 2.5.0 (July 18th, 2018)
1
+ 2.5.1 (July 19th, 2018)
2
+ - BUGFIX: typo in application.rb regarding template name
3
+
4
+ 2.5.0 (July 18th, 2018)
2
5
  - Change fog dependency to fog-aws
3
6
 
4
7
  2.4.0 (July 17th, 2018)
@@ -55,7 +55,7 @@ module Stevenson
55
55
  end
56
56
 
57
57
  # Load the template using the template loader
58
- template = Stevenson::Template.load(template_url, options)
58
+ template = Stevenson::Template.load(template, options)
59
59
 
60
60
  # Place yml files
61
61
  template.place_config(config_path)
@@ -8,7 +8,7 @@ module Stevenson
8
8
  end
9
9
 
10
10
  def local_directory
11
- raise InvalidTemplateException.new("The given path is not a directory '#{template_path}'") unless File.directory?(template_path)
11
+ raise InvalidTemplateException.new("The given path is not a directory '#{template_path}'") unless template_path && File.directory?(template_path)
12
12
 
13
13
  @_local_directory ||= Dir.mktmpdir.tap do |dir|
14
14
  directories = [template_path, options[:subdirectory], '.'].compact
@@ -1,3 +1,3 @@
1
1
  module Stevenson
2
- VERSION = "2.5.0"
2
+ VERSION = "2.5.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stevenson
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.0
4
+ version: 2.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - RootsRated