confetti 0.6.0 → 0.6.1

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.6.0)
4
+ confetti (0.6.1)
5
5
  mustache (~> 0.11.2)
6
6
 
7
7
  GEM
@@ -29,7 +29,9 @@
29
29
 
30
30
  <access subdomains="true" uri="file:///store/home"/>
31
31
  <access subdomains="true" uri="file:///SDCard"/>
32
- <access subdomains="true" uri="*" />
32
+ {{# access }}
33
+ <access subdomains="{{ subdomains }}" uri="{{ uri }}" />
34
+ {{/ access }}
33
35
 
34
36
  <icon rim:hover="false" src="resources/icon.png"/>
35
37
  <icon rim:hover="true" src="resources/icon_hover.png"/>
@@ -98,6 +98,12 @@ module Confetti
98
98
 
99
99
  gap ? 'com.phonegap' : 'org.apache.cordova'
100
100
  end
101
+
102
+ def access
103
+ @config.access_set.map do |a|
104
+ { :subdomains => !!a.subdomains, :uri => a.origin }
105
+ end
106
+ end
101
107
  end
102
108
  end
103
109
  end
@@ -24,7 +24,9 @@
24
24
  <feature id="blackberry.identity.phone" />
25
25
  <access subdomains="true" uri="file:///store/home"/>
26
26
  <access subdomains="true" uri="file:///SDCard"/>
27
- <access subdomains="true" uri="*" />
27
+ {{# access }}
28
+ <access subdomains="{{ subdomains }}" uri="{{ uri }}" />
29
+ {{/ access }}
28
30
  <icon rim:hover="false" src="resources/icon.png"/>
29
31
  <icon rim:hover="true" src="resources/icon_hover.png"/>
30
32
  <content src="index.html"/>
@@ -1,3 +1,3 @@
1
1
  module Confetti
2
- VERSION = "0.6.0"
2
+ VERSION = "0.6.1"
3
3
  end
data/spec/config_spec.rb CHANGED
@@ -347,6 +347,11 @@ describe Confetti::Config do
347
347
  end
348
348
 
349
349
  describe "access" do
350
+ before do
351
+ @config = Confetti::Config.new
352
+ @config.populate_from_xml(fixture_dir + "/config_with_access.xml")
353
+ end
354
+
350
355
  it "should append tags to the access set" do
351
356
  @config.access_set.size.should be 2
352
357
  end
@@ -50,7 +50,6 @@ THE SOFTWARE.</license>
50
50
  <access subdomains="true" uri="file:///store/home"/>
51
51
  <access subdomains="true" uri="file:///SDCard"/>
52
52
  <access subdomains="true" uri="*" />
53
-
54
53
  <icon rim:hover="false" src="resources/icon.png"/>
55
54
  <icon rim:hover="true" src="resources/icon_hover.png"/>
56
55
 
@@ -48,6 +48,5 @@ THE SOFTWARE.</license>
48
48
  <feature name="http://api.phonegap.com/1.0/camera" required="true"/>
49
49
  <feature name="http://api.phonegap.com/1.0/notification" required="true"/>
50
50
 
51
- <access origin="http://foo.phonegap.com" />
52
- <access origin="http://bar.phonegap.com" subdomains="false" />
51
+ <access origin="*" />
53
52
  </widget>
@@ -48,8 +48,5 @@ THE SOFTWARE.</license>
48
48
  <feature name="http://api.phonegap.com/1.0/camera" required="true"/>
49
49
  <feature name="http://api.phonegap.com/1.0/notification" required="true"/>
50
50
 
51
- <gap:plugin name="ChildBrowser"
52
- value="com.phonegap.plugins.childBrowser.ChildBrowser">
53
- <platform name="android" />
54
- </gap:plugin>
51
+ <access origin="*" />
55
52
  </widget>
@@ -0,0 +1,53 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <widget xmlns = "http://www.w3.org/ns/widgets"
3
+ xmlns:gap = "http://phonegap.com/ns/1.0"
4
+ id = "com.alunny.confetti"
5
+ version = "1.0.0">
6
+
7
+ <name>Confetti Sample App</name>
8
+
9
+ <description>
10
+ This is a sample config.xml for integration testing with Confetti
11
+ </description>
12
+
13
+ <license href="http://www.opensource.org/licenses/mit-license.php">The MIT License
14
+
15
+ Copyright (c) 2011 Andrew Lunny
16
+
17
+ Permission is hereby granted, free of charge, to any person obtaining a copy
18
+ of this software and associated documentation files (the &quot;Software&quot;), to deal
19
+ in the Software without restriction, including without limitation the rights
20
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
21
+ copies of the Software, and to permit persons to whom the Software is
22
+ furnished to do so, subject to the following conditions:
23
+
24
+ The above copyright notice and this permission notice shall be included in
25
+ all copies or substantial portions of the Software.
26
+
27
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
30
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
31
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
32
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
33
+ THE SOFTWARE.</license>
34
+
35
+ <author href="http://alunny.github.com"
36
+ email="alunny@gmail.com">
37
+ Andrew Lunny
38
+ </author>
39
+
40
+ <icon src="icon.png" height="150" width="200" />
41
+
42
+ <gap:splash src="mainsplash.png" height="480" width="360" />
43
+
44
+ <preference name="universal" value="true"/>
45
+ <preference name="phonegap-version" value="1.3.0"/>
46
+
47
+ <feature name="http://api.phonegap.com/1.0/geolocation" required="true"/>
48
+ <feature name="http://api.phonegap.com/1.0/camera" required="true"/>
49
+ <feature name="http://api.phonegap.com/1.0/notification" required="true"/>
50
+
51
+ <access origin="http://foo.phonegap.com" />
52
+ <access origin="http://bar.phonegap.com" subdomains="false" />
53
+ </widget>
@@ -45,6 +45,7 @@ describe Confetti::Template::BlackberryWidgetsConfig do
45
45
  @config.author.href = "http://brucelee.cn"
46
46
  @config.description = "My New App, by Bruce Lee"
47
47
  @config.phonegap_version = "0.9.5.1"
48
+ @config.access_set << Confetti::Config::Access.new('*', true)
48
49
  end
49
50
 
50
51
  it "should accept the config object" do
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 6
8
- - 0
9
- version: 0.6.0
8
+ - 1
9
+ version: 0.6.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Andrew Lunny
@@ -118,6 +118,7 @@ files:
118
118
  - spec/fixtures/config.xml
119
119
  - spec/fixtures/config_fullscreen.xml
120
120
  - spec/fixtures/config_legacy.xml
121
+ - spec/fixtures/config_with_access.xml
121
122
  - spec/fixtures/config_with_orientation.xml
122
123
  - spec/fixtures/config_with_version_code.xml
123
124
  - spec/fixtures/configs/blank-splash.xml
@@ -204,6 +205,7 @@ test_files:
204
205
  - spec/fixtures/config.xml
205
206
  - spec/fixtures/config_fullscreen.xml
206
207
  - spec/fixtures/config_legacy.xml
208
+ - spec/fixtures/config_with_access.xml
207
209
  - spec/fixtures/config_with_orientation.xml
208
210
  - spec/fixtures/config_with_version_code.xml
209
211
  - spec/fixtures/configs/blank-splash.xml