candle 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.3
1
+ 0.0.4
@@ -116,11 +116,12 @@ template "templates/blank/WaxApplication/main.m.tt", "#{@project_name}/#{@projec
116
116
  template "templates/blank/WaxApplication/ProtocolLoader.h", "#{@project_name}/#{@project_name}/ProtocolLoader.h"
117
117
 
118
118
  directory "templates/blank/WaxApplication/en.lproj", "#{@project_name}/#{@project_name}/en.lproj"
119
- template "templates/blank/WaxApplication/Default.png", "#{@project_name}/#{@project_name}/Default.png"
120
- template "templates/blank/WaxApplication/Default@2x.png", "#{@project_name}/#{@project_name}/Default@2x.png"
121
- template "templates/blank/WaxApplication/Default-568h@2x.png", "#{@project_name}/#{@project_name}/Default-568h@2x.png"
122
119
 
123
120
  template "templates/blank/WaxApplication/WaxApplication-Info.plist.tt", "#{@project_name}/#{@project_name}/#{@project_name}-Info.plist"
124
121
  template "templates/blank/WaxApplication/WaxApplication-Prefix.pch.tt", "#{@project_name}/#{@project_name}/#{@project_name}-Prefix.pch"
125
122
 
123
+ copy_file "templates/resources/Default-568h@2x.png", "#{@project_name}/#{@project_name}/Default-568h@2x.png"
124
+ copy_file "templates/resources/Default@2x.png", "#{@project_name}/#{@project_name}/Default@2x.png"
125
+ copy_file "templates/resources/Default.png", "#{@project_name}/#{@project_name}/Default.png"
126
+
126
127
  system "chmod 777 #{@project_name}/wax/lib/build-scripts/*"
@@ -2,7 +2,7 @@ module Candle
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- PATCH = 3
5
+ PATCH = 4
6
6
 
7
7
  STRING = [MAJOR, MINOR, PATCH].compact.join('.').chomp('.')
8
8
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: candle
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 3
10
- version: 0.0.3
9
+ - 4
10
+ version: 0.0.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Eiffel Qiu
@@ -510,14 +510,14 @@ files:
510
510
  - lib/candle/generators/templates/blank/WaxApplication.xcodeproj/project.xcworkspace/xcuserdata/eiffel.xcuserdatad/UserInterfaceState.xcuserstate
511
511
  - lib/candle/generators/templates/blank/WaxApplication.xcodeproj/xcuserdata/eiffel.xcuserdatad/xcschemes/WaxApplication.xcscheme
512
512
  - lib/candle/generators/templates/blank/WaxApplication.xcodeproj/xcuserdata/eiffel.xcuserdatad/xcschemes/xcschememanagement.plist
513
- - lib/candle/generators/templates/blank/WaxApplication/Default-568h@2x.png
514
- - lib/candle/generators/templates/blank/WaxApplication/Default.png
515
- - lib/candle/generators/templates/blank/WaxApplication/Default@2x.png
516
513
  - lib/candle/generators/templates/blank/WaxApplication/ProtocolLoader.h
517
514
  - lib/candle/generators/templates/blank/WaxApplication/WaxApplication-Info.plist.tt
518
515
  - lib/candle/generators/templates/blank/WaxApplication/WaxApplication-Prefix.pch.tt
519
516
  - lib/candle/generators/templates/blank/WaxApplication/en.lproj/InfoPlist.strings
520
517
  - lib/candle/generators/templates/blank/WaxApplication/main.m.tt
518
+ - lib/candle/generators/templates/resources/Default-568h@2x.png
519
+ - lib/candle/generators/templates/resources/Default.png
520
+ - lib/candle/generators/templates/resources/Default@2x.png
521
521
  - lib/candle/tasks.rb
522
522
  - lib/candle/utility.rb
523
523
  - lib/candle/version.rb