vanilla 1.15 → 1.15.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.
Files changed (3) hide show
  1. data/bin/vanilla +1 -1
  2. data/lib/vanilla.rb +1 -1
  3. metadata +3 -2
data/bin/vanilla CHANGED
@@ -4,7 +4,7 @@ def create(new_app_dir)
4
4
  require 'fileutils'
5
5
  pristine_app = File.expand_path("../../pristine_app", __FILE__)
6
6
  FileUtils.cp_r(pristine_app, new_app_dir)
7
- FileUtils.mkdir(File.join(new_app_dir, "tmp"))
7
+ FileUtils.mkdir_p(File.join(new_app_dir, "tmp"))
8
8
  require 'vanilla'
9
9
  File.open(File.join(new_app_dir, "Gemfile"), "w") do |f|
10
10
  f.write "source :rubygems\n\n# Vanilla itself.\ngem 'vanilla', '#{Vanilla::VERSION}'"
data/lib/vanilla.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Vanilla
2
- VERSION = "1.15"
2
+ VERSION = "1.15.1"
3
3
 
4
4
  autoload :Renderers, "vanilla/renderers"
5
5
  autoload :App, "vanilla/app"
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vanilla
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 41
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 15
9
- version: "1.15"
9
+ - 1
10
+ version: 1.15.1
10
11
  platform: ruby
11
12
  authors:
12
13
  - James Adam