confetti 0.5.2 → 0.5.3
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.
- data/Gemfile.lock +1 -1
- data/lib/confetti.rb +1 -0
- data/lib/confetti/config.rb +2 -1
- data/lib/confetti/templates/ios_remote_plist.mustache +29 -0
- data/lib/confetti/templates/ios_remote_plist.rb +11 -0
- data/lib/confetti/version.rb +1 -1
- metadata +4 -2
data/Gemfile.lock
CHANGED
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
|
|
data/lib/confetti/config.rb
CHANGED
@@ -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>
|
data/lib/confetti/version.rb
CHANGED
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 5
|
8
|
-
-
|
9
|
-
version: 0.5.
|
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
|