confetti 0.5.2 → 0.5.3

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- confetti (0.5.2)
4
+ confetti (0.5.3)
5
5
  mustache (~> 0.11.2)
6
6
 
7
7
  GEM
data/lib/confetti.rb CHANGED
@@ -29,6 +29,7 @@ require 'confetti/templates/android_manifest'
29
29
  require 'confetti/templates/android_strings'
30
30
  require 'confetti/templates/blackberry_widgets_config'
31
31
  require 'confetti/templates/ios_info'
32
+ require 'confetti/templates/ios_remote_plist'
32
33
  require 'confetti/templates/symbian_wrt_info'
33
34
  require 'confetti/templates/webos_appinfo'
34
35
 
@@ -17,7 +17,8 @@ module Confetti
17
17
  :splash_set, :plist_icon_set, :plugin_set
18
18
 
19
19
  generate_and_write :android_manifest, :android_strings, :webos_appinfo,
20
- :ios_info, :symbian_wrt_info, :blackberry_widgets_config
20
+ :ios_info, :symbian_wrt_info, :blackberry_widgets_config,
21
+ :ios_remote_plist
21
22
 
22
23
  # handle bad generate/write calls
23
24
  def method_missing(method_name, *args)
@@ -0,0 +1,29 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>items</key>
6
+ <array>
7
+ <dict>
8
+ <key>assets</key>
9
+ <array>
10
+ <dict>
11
+ <key>kind</key>
12
+ <string>software-package</string>
13
+ <key>url</key>
14
+ <string>__IPA_URL__</string>
15
+ </dict>
16
+ </array>
17
+ <key>metadata</key>
18
+ <dict>
19
+ <key>bundle-identifier</key>
20
+ <string>{{ bundle_identifier }}</string>
21
+ <key>kind</key>
22
+ <string>software</string>
23
+ <key>title</key>
24
+ <string>{{ product_name }}</string>
25
+ </dict>
26
+ </dict>
27
+ </array>
28
+ </dict>
29
+ </plist>
@@ -0,0 +1,11 @@
1
+ module Confetti
2
+ module Template
3
+ class IosRemotePlist < IosInfo
4
+ # just take the methods from IosInfo
5
+
6
+ def output_filename
7
+ "remote.plist"
8
+ end
9
+ end
10
+ end
11
+ end
@@ -1,3 +1,3 @@
1
1
  module Confetti
2
- VERSION = "0.5.2"
2
+ VERSION = "0.5.3"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 5
8
- - 2
9
- version: 0.5.2
8
+ - 3
9
+ version: 0.5.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Andrew Lunny
@@ -83,6 +83,8 @@ files:
83
83
  - lib/confetti/templates/blackberry_widgets_config_legacy.mustache
84
84
  - lib/confetti/templates/ios_info.mustache
85
85
  - lib/confetti/templates/ios_info.rb
86
+ - lib/confetti/templates/ios_remote_plist.mustache
87
+ - lib/confetti/templates/ios_remote_plist.rb
86
88
  - lib/confetti/templates/java_checks.rb
87
89
  - lib/confetti/templates/symbian_wrt_info.mustache
88
90
  - lib/confetti/templates/symbian_wrt_info.rb