jiveapps 1.0.0 → 1.0.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.
data/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ === 1.0.1 2011-04-18
2
+ * Minor Enhancement
3
+ * app template - add type="html" to <Content> elements
4
+ * Bug Fix
5
+ * app template - move example UserPrefs outside of ModulePrefs in gadget xml
6
+
1
7
  === 1.0.0 2011-04-06
2
8
  * Major Enhancements
3
9
  * LiveDev: Make a change, save a file, and hit refresh in your browser to see your latest changes on the Sandbox
@@ -38,20 +38,6 @@
38
38
  <link rel="event.removeapp" href="http://www.example.com/remove" />
39
39
  -->
40
40
 
41
- <!-- User Preferences: http://code.google.com/apis/gadgets/docs/reference.html#Userprefs_Ref -->
42
- <!--
43
- <UserPref name="where_i_live" display_name="Where I Live" datatype="string" default_value="" required="false" />
44
- <UserPref name="where_i_work" display_name="Where I Work" datatype="bool" default_value="" required="false" />
45
- <UserPref name="difficulty"
46
- display_name="Difficulty"
47
- datatype="enum"
48
- default_value="2">
49
- <EnumValue value="1" display_value="Easy"/>
50
- <EnumValue value="2" display_value="Medium"/>
51
- <EnumValue value="3" display_value="Hard"/>
52
- </UserPref>
53
- -->
54
-
55
41
  <!-- Preloaded Content: http://wiki.opensocial.org/index.php?title=Remote_Data_Requests_%28v0.9%29#Preloading_data -->
56
42
  <!--
57
43
  <Preload href="http://www.example.com" />
@@ -59,13 +45,26 @@
59
45
 
60
46
  </ModulePrefs>
61
47
 
48
+ <!-- User Preferences: http://code.google.com/apis/gadgets/docs/reference.html#Userprefs_Ref -->
49
+ <!--
50
+ <UserPref name="where_i_live" display_name="Where I Live" datatype="string" default_value="" required="false" />
51
+ <UserPref name="where_i_work" display_name="Where I Work" datatype="bool" default_value="" required="false" />
52
+ <UserPref name="difficulty"
53
+ display_name="Difficulty"
54
+ datatype="enum"
55
+ default_value="2">
56
+ <EnumValue value="1" display_value="Easy"/>
57
+ <EnumValue value="2" display_value="Medium"/>
58
+ <EnumValue value="3" display_value="Hard"/>
59
+ </UserPref>
60
+ -->
61
+
62
62
  <!-- To begin development, remove the hello view and uncomment the home and canvas views below -->
63
- <Content view="home,canvas" href="hello.html">
64
- </Content>
63
+ <Content type="html" view="home,canvas" href="hello.html" />
65
64
 
66
65
  <!--
67
- <Content view="home" href="home.html" />
68
- <Content view="canvas" href="canvas.html" />
66
+ <Content type="html" view="home" href="home.html" />
67
+ <Content type="html" view="canvas" href="canvas.html" />
69
68
  -->
70
69
 
71
70
  </Module>
@@ -1,3 +1,3 @@
1
1
  module Jiveapps
2
- VERSION = '1.0.0'
2
+ VERSION = '1.0.1'
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jiveapps
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 0
10
- version: 1.0.0
9
+ - 1
10
+ version: 1.0.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Scott Becker
@@ -15,8 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-04-06 00:00:00 -07:00
19
- default_executable:
18
+ date: 2011-04-19 00:00:00 Z
20
19
  dependencies:
21
20
  - !ruby/object:Gem::Dependency
22
21
  name: activesupport
@@ -207,7 +206,6 @@ files:
207
206
  - spec/commands/oauth_spec.rb
208
207
  - spec/commands/sharing_spec.rb
209
208
  - spec/spec_helper.rb
210
- has_rdoc: true
211
209
  homepage: https://github.com/jivesoftware/jiveapps-gem
212
210
  licenses: []
213
211
 
@@ -237,7 +235,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
237
235
  requirements: []
238
236
 
239
237
  rubyforge_project:
240
- rubygems_version: 1.5.0
238
+ rubygems_version: 1.7.2
241
239
  signing_key:
242
240
  specification_version: 3
243
241
  summary: The "jiveapps" gem is a set of command line tools for building and hosting Jive App front-ends.