limelight 0.1.0-java → 0.2.0-java

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.
Files changed (179) hide show
  1. data/bin/limelight +0 -0
  2. data/bin/ll +2 -2
  3. data/bin/ll.bat +2 -2
  4. data/lib/init.rb +5 -3
  5. data/lib/limelight.jar +0 -0
  6. data/lib/limelight/animation.rb +20 -0
  7. data/lib/limelight/build_exception.rb +1 -1
  8. data/lib/limelight/builtin/players.rb +12 -0
  9. data/lib/limelight/builtin/players/button.rb +24 -0
  10. data/lib/limelight/builtin/players/check_box.rb +31 -0
  11. data/lib/limelight/builtin/players/combo_box.rb +55 -0
  12. data/lib/limelight/builtin/players/combo_box_popup_list.rb +19 -0
  13. data/lib/limelight/builtin/players/combo_box_popup_list_item.rb +21 -0
  14. data/lib/limelight/builtin/players/curtains.rb +22 -0
  15. data/lib/limelight/builtin/players/radio_button.rb +41 -0
  16. data/lib/limelight/builtin/players/text_area.rb +25 -0
  17. data/lib/limelight/builtin/players/text_box.rb +25 -0
  18. data/lib/limelight/builtin/styles.rb +35 -0
  19. data/lib/limelight/button_group_cache.rb +2 -2
  20. data/lib/limelight/casting_director.rb +9 -6
  21. data/lib/limelight/commands.rb +3 -3
  22. data/lib/limelight/file_chooser.rb +1 -1
  23. data/lib/limelight/file_filter.rb +1 -1
  24. data/lib/limelight/java_couplings.rb +57 -0
  25. data/lib/limelight/java_util.rb +1 -1
  26. data/lib/limelight/limelight_exception.rb +1 -1
  27. data/lib/limelight/loaders/file_scene_loader.rb +3 -2
  28. data/lib/limelight/menu_bar.rb +1 -1
  29. data/lib/limelight/paint_action.rb +2 -2
  30. data/lib/limelight/pen.rb +2 -2
  31. data/lib/limelight/producer.rb +21 -5
  32. data/lib/limelight/production.rb +1 -1
  33. data/lib/limelight/production_builder.rb +1 -1
  34. data/lib/limelight/prop.rb +49 -39
  35. data/lib/limelight/prop_builder.rb +1 -1
  36. data/lib/limelight/scene.rb +3 -3
  37. data/lib/limelight/stage.rb +5 -5
  38. data/lib/limelight/stage_builder.rb +1 -1
  39. data/lib/limelight/styles.rb +2 -2
  40. data/lib/limelight/styles_builder.rb +7 -7
  41. data/lib/limelight/theater.rb +2 -2
  42. data/lib/limelight/util.rb +1 -1
  43. data/lib/limelight/version.rb +2 -2
  44. data/productions/examples/8thlight.com/about/about.txt +3 -3
  45. data/productions/examples/8thlight.com/about/props.rb +1 -1
  46. data/productions/examples/8thlight.com/about/styles.rb +1 -1
  47. data/productions/examples/8thlight.com/footer.rb +1 -1
  48. data/productions/examples/8thlight.com/home/props.rb +1 -1
  49. data/productions/examples/8thlight.com/home/styles.rb +1 -1
  50. data/productions/examples/8thlight.com/images/bg.jpg +0 -0
  51. data/productions/examples/8thlight.com/images/button_bg.jpg +0 -0
  52. data/productions/examples/8thlight.com/images/canvas_bg.jpg +0 -0
  53. data/productions/examples/8thlight.com/images/thumbnail_book.jpg +0 -0
  54. data/productions/examples/8thlight.com/menu.rb +1 -1
  55. data/productions/examples/8thlight.com/services/props.rb +1 -1
  56. data/productions/examples/8thlight.com/services/services.txt +1 -1
  57. data/productions/examples/8thlight.com/services/styles.rb +1 -1
  58. data/productions/examples/8thlight.com/stages.rb +1 -1
  59. data/productions/examples/8thlight.com/styles.rb +8 -1
  60. data/productions/examples/calculator/players/button.rb +1 -1
  61. data/productions/examples/calculator/players/calculator.rb +1 -1
  62. data/productions/examples/calculator/players/calculator_model.rb +1 -1
  63. data/productions/examples/calculator/props.rb +1 -1
  64. data/productions/examples/calculator/styles.rb +1 -1
  65. data/productions/examples/langstons_ant/players/ant.rb +1 -1
  66. data/productions/examples/langstons_ant/players/log.rb +1 -1
  67. data/productions/examples/langstons_ant/players/start_stop_button.rb +1 -1
  68. data/productions/examples/langstons_ant/players/world.rb +1 -1
  69. data/productions/examples/langstons_ant/props.rb +1 -1
  70. data/productions/examples/langstons_ant/styles.rb +1 -1
  71. data/productions/examples/sandbox/click_me/players/chromaton.rb +1 -1
  72. data/productions/examples/sandbox/click_me/props.rb +1 -1
  73. data/productions/examples/sandbox/click_me/styles.rb +1 -1
  74. data/productions/examples/sandbox/floaters/players/floater.rb +21 -11
  75. data/productions/examples/sandbox/floaters/players/surface.rb +5 -1
  76. data/productions/examples/sandbox/floaters/props.rb +1 -1
  77. data/productions/examples/sandbox/floaters/styles.rb +1 -1
  78. data/productions/examples/sandbox/gradients/players/spinner.rb +5 -12
  79. data/productions/examples/sandbox/gradients/players/teaser.rb +7 -14
  80. data/productions/examples/sandbox/gradients/players/wave.rb +7 -14
  81. data/productions/examples/sandbox/gradients/players/waves.rb +7 -14
  82. data/productions/examples/sandbox/gradients/props.rb +1 -1
  83. data/productions/examples/sandbox/gradients/styles.rb +1 -1
  84. data/productions/examples/sandbox/header.rb +2 -1
  85. data/productions/examples/sandbox/homer/players/homer.rb +12 -8
  86. data/productions/examples/sandbox/homer/props.rb +1 -1
  87. data/productions/examples/sandbox/homer/styles.rb +1 -1
  88. data/productions/examples/sandbox/inputs/players/button_input.rb +1 -1
  89. data/productions/examples/sandbox/inputs/players/check_box_input.rb +1 -1
  90. data/productions/examples/sandbox/inputs/players/combo_box_input.rb +3 -3
  91. data/productions/examples/sandbox/inputs/players/radio_button_input.rb +1 -1
  92. data/productions/examples/sandbox/inputs/players/text_area_input.rb +1 -1
  93. data/productions/examples/sandbox/inputs/players/text_box_input.rb +1 -1
  94. data/productions/examples/sandbox/inputs/props.rb +3 -3
  95. data/productions/examples/sandbox/inputs/styles.rb +2 -1
  96. data/productions/examples/sandbox/players/sandbox.rb +1 -1
  97. data/productions/examples/sandbox/rounded_corners/players/box.rb +1 -1
  98. data/productions/examples/sandbox/rounded_corners/props.rb +1 -1
  99. data/productions/examples/sandbox/rounded_corners/styles.rb +1 -1
  100. data/productions/examples/sandbox/scrolling/players/add_button.rb +19 -0
  101. data/productions/examples/sandbox/scrolling/players/cell.rb +1 -2
  102. data/productions/examples/sandbox/scrolling/props.rb +9 -4
  103. data/productions/examples/sandbox/scrolling/styles.rb +10 -1
  104. data/productions/examples/sandbox/sketching/players/sketchpad.rb +1 -1
  105. data/productions/examples/sandbox/sketching/props.rb +1 -1
  106. data/productions/examples/sandbox/sketching/styles.rb +1 -2
  107. data/productions/examples/sandbox/sounds/bird.au +0 -0
  108. data/productions/examples/sandbox/sounds/cat.au +0 -0
  109. data/productions/examples/sandbox/sounds/cow.au +0 -0
  110. data/productions/examples/sandbox/sounds/dog.au +0 -0
  111. data/productions/examples/sandbox/sounds/donkey.au +0 -0
  112. data/productions/examples/sandbox/sounds/duck.au +0 -0
  113. data/productions/examples/sandbox/sounds/players/clip.rb +10 -0
  114. data/productions/examples/sandbox/sounds/props.rb +10 -0
  115. data/productions/examples/sandbox/sounds/styles.rb +17 -0
  116. data/productions/examples/sandbox/stages.rb +2 -1
  117. data/productions/examples/sandbox/styles.rb +6 -6
  118. data/productions/examples/sandbox/teaser/players/fader.rb +22 -16
  119. data/productions/examples/sandbox/teaser/props.rb +1 -1
  120. data/productions/examples/sandbox/teaser/styles.rb +1 -1
  121. data/productions/examples/tutorials/tutorial_1/players/sample.rb +1 -1
  122. data/productions/examples/tutorials/tutorial_1/props.rb +1 -1
  123. data/productions/examples/tutorials/tutorial_1/styles.rb +1 -1
  124. data/productions/stage_composer/init.rb +1 -1
  125. data/productions/stage_composer/inspector/players/inspector.rb +1 -1
  126. data/productions/stage_composer/inspector/players/prop_row.rb +1 -1
  127. data/productions/stage_composer/inspector/players/prop_tree.rb +1 -1
  128. data/productions/stage_composer/inspector/players/style_table.rb +1 -1
  129. data/productions/stage_composer/inspector/players/style_value.rb +1 -1
  130. data/productions/stage_composer/inspector/props.rb +2 -2
  131. data/productions/stage_composer/inspector/styles.rb +3 -3
  132. data/productions/stage_composer/lib/init.rb +1 -1
  133. data/productions/stage_composer/lib/limelight/composer/controller.rb +1 -1
  134. data/productions/stage_composer/lib/limelight/composer/lethargy.rb +1 -1
  135. data/productions/stage_composer/production.rb +1 -1
  136. data/productions/stage_composer/stages.rb +1 -1
  137. data/productions/startup/players/browse_button.rb +3 -0
  138. data/productions/startup/players/download_button.rb +4 -1
  139. data/productions/startup/players/sandbox_button.rb +4 -1
  140. data/productions/startup/props.rb +3 -5
  141. data/productions/startup/styles.rb +5 -5
  142. data/spec/builtin/players/button_spec.rb +21 -0
  143. data/spec/builtin/players/check_box_spec.rb +29 -0
  144. data/spec/builtin/players/combo_box_spec.rb +29 -0
  145. data/spec/{players → builtin/players}/radio_button_spec.rb +9 -20
  146. data/spec/builtin/players/text_area_spec.rb +27 -0
  147. data/spec/builtin/players/text_box_spec.rb +27 -0
  148. data/spec/casting_director_spec.rb +3 -3
  149. data/spec/commands_spec.rb +2 -2
  150. data/spec/file_chooser_spec.rb +1 -1
  151. data/spec/file_filter_spec.rb +1 -1
  152. data/spec/java_util_spec.rb +1 -1
  153. data/spec/loaders/file_loader_spec.rb +1 -1
  154. data/spec/paint_action_spec.rb +1 -1
  155. data/spec/pen_spec.rb +1 -1
  156. data/spec/producer_spec.rb +14 -4
  157. data/spec/production_builder_spec.rb +1 -1
  158. data/spec/production_spec.rb +1 -1
  159. data/spec/prop_builder_spec.rb +1 -1
  160. data/spec/prop_spec.rb +66 -5
  161. data/spec/scene_spec.rb +2 -2
  162. data/spec/spec_helper.rb +4 -1
  163. data/spec/stage_builder_spec.rb +1 -1
  164. data/spec/stage_spec.rb +1 -1
  165. data/spec/styles_builder_spec.rb +34 -2
  166. data/spec/theater_spec.rb +1 -1
  167. metadata +130 -106
  168. data/lib/limelight/players.rb +0 -9
  169. data/lib/limelight/players/button.rb +0 -29
  170. data/lib/limelight/players/check_box.rb +0 -38
  171. data/lib/limelight/players/combo_box.rb +0 -44
  172. data/lib/limelight/players/radio_button.rb +0 -47
  173. data/lib/limelight/players/text_area.rb +0 -25
  174. data/lib/limelight/players/text_box.rb +0 -25
  175. data/spec/players/button_spec.rb +0 -31
  176. data/spec/players/check_box_spec.rb +0 -40
  177. data/spec/players/combo_box_spec.rb +0 -39
  178. data/spec/players/text_area_spec.rb +0 -37
  179. data/spec/players/text_box_spec.rb +0 -37
@@ -1,4 +1,4 @@
1
- #- Copyright 2008 8th Light, Inc.
1
+ #- Copyright 2008 8th Light, Inc. All Rights Reserved.
2
2
  #- Limelight and all included source files are distributed under terms of the GNU LGPL.
3
3
 
4
4
  require File.expand_path(File.dirname(__FILE__) + "/spec_helper")
data/spec/stage_spec.rb CHANGED
@@ -1,4 +1,4 @@
1
- #- Copyright 2008 8th Light, Inc.
1
+ #- Copyright 2008 8th Light, Inc. All Rights Reserved.
2
2
  #- Limelight and all included source files are distributed under terms of the GNU LGPL.
3
3
 
4
4
  require File.expand_path(File.dirname(__FILE__) + "/spec_helper")
@@ -1,4 +1,4 @@
1
- #- Copyright 2008 8th Light, Inc.
1
+ #- Copyright 2008 8th Light, Inc. All Rights Reserved.
2
2
  #- Limelight and all included source files are distributed under terms of the GNU LGPL.
3
3
 
4
4
  require File.expand_path(File.dirname(__FILE__) + "/spec_helper")
@@ -22,7 +22,7 @@ describe Limelight::StylesBuilder do
22
22
  end
23
23
 
24
24
  result.size.should == 1
25
- result["root"].class.should == Java::limelight.ui.RichStyle
25
+ result["root"].class.should == Limelight::Styles::RichStyle
26
26
  end
27
27
 
28
28
  it "should build one style with styling" do
@@ -117,7 +117,39 @@ describe Limelight::StylesBuilder do
117
117
 
118
118
  it "should raise an exception when attempting to extend a missing style" do
119
119
  lambda { Limelight.build_styles { one { extends :blah } } }.should raise_error(Limelight::StyleBuilderException, "Can't extend missing style: 'blah'")
120
+ end
121
+
122
+ it "should allow styles to be repopened" do
123
+ styles = Limelight.build_styles do
124
+ one { width 100 }
125
+ one { height 200 }
126
+ one { x 300 }
120
127
  end
121
128
 
129
+ styles.size.should == 1
130
+ one = styles["one"]
131
+ one.width.should == "100"
132
+ one.height.should == "200"
133
+ one.x.should == "300"
134
+ end
135
+
136
+ it "should be able to start with an existing styles hash" do
137
+ styles1 = Limelight.build_styles do
138
+ one { width 100 }
139
+ end
140
+ styles2 = Limelight.build_styles(styles1) do
141
+ one { height 200 }
142
+ two { width 123 }
143
+ end
144
+
145
+ styles1.should == styles2
146
+ styles2.size.should == 2
147
+ one = styles2["one"]
148
+ two = styles2["two"]
149
+ one.width.should == "100"
150
+ one.height.should == "200"
151
+ two.width.should == "123"
152
+ end
153
+
122
154
  end
123
155
 
data/spec/theater_spec.rb CHANGED
@@ -1,4 +1,4 @@
1
- #- Copyright 2008 8th Light, Inc.
1
+ #- Copyright 2008 8th Light, Inc. All Rights Reserved.
2
2
  #- Limelight and all included source files are distributed under terms of the GNU LGPL.
3
3
 
4
4
  require File.expand_path(File.dirname(__FILE__) + "/spec_helper")
metadata CHANGED
@@ -1,26 +1,53 @@
1
- --- !ruby/object:Gem::Specification
2
- extensions: []
3
- homepage: http://limelight.8thlight.com
1
+ --- !ruby/object:Gem::Specification
2
+ name: limelight
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: java
6
+ authors:
7
+ - Micah Martin, 8th Light
8
+ autorequire: init
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-09-11 00:00:00 -05:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description: "Limelight: A dynamic rich client framework and application platform."
17
+ email: limelight@rubyforge.org
4
18
  executables:
5
19
  - limelight
6
- version: !ruby/object:Gem::Version
7
- version: 0.1.0
8
- post_install_message:
9
- date: 2008-05-29 07:00:00 +00:00
20
+ extensions: []
21
+
22
+ extra_rdoc_files: []
23
+
10
24
  files:
11
25
  - lib/init.rb
26
+ - lib/limelight/animation.rb
12
27
  - lib/limelight/build_exception.rb
28
+ - lib/limelight/builtin/players/button.rb
29
+ - lib/limelight/builtin/players/check_box.rb
30
+ - lib/limelight/builtin/players/combo_box.rb
31
+ - lib/limelight/builtin/players/combo_box_popup_list.rb
32
+ - lib/limelight/builtin/players/combo_box_popup_list_item.rb
33
+ - lib/limelight/builtin/players/curtains.rb
34
+ - lib/limelight/builtin/players/radio_button.rb
35
+ - lib/limelight/builtin/players/text_area.rb
36
+ - lib/limelight/builtin/players/text_box.rb
37
+ - lib/limelight/builtin/players.rb
38
+ - lib/limelight/builtin/styles.rb
13
39
  - lib/limelight/button_group_cache.rb
14
40
  - lib/limelight/casting_director.rb
15
41
  - lib/limelight/commands.rb
16
42
  - lib/limelight/file_chooser.rb
17
43
  - lib/limelight/file_filter.rb
44
+ - lib/limelight/java_couplings.rb
18
45
  - lib/limelight/java_util.rb
19
46
  - lib/limelight/limelight_exception.rb
47
+ - lib/limelight/loaders/file_scene_loader.rb
20
48
  - lib/limelight/menu_bar.rb
21
49
  - lib/limelight/paint_action.rb
22
50
  - lib/limelight/pen.rb
23
- - lib/limelight/players.rb
24
51
  - lib/limelight/producer.rb
25
52
  - lib/limelight/production.rb
26
53
  - lib/limelight/production_builder.rb
@@ -34,19 +61,19 @@ files:
34
61
  - lib/limelight/theater.rb
35
62
  - lib/limelight/util.rb
36
63
  - lib/limelight/version.rb
37
- - lib/limelight/loaders/file_scene_loader.rb
38
- - lib/limelight/players/button.rb
39
- - lib/limelight/players/check_box.rb
40
- - lib/limelight/players/combo_box.rb
41
- - lib/limelight/players/radio_button.rb
42
- - lib/limelight/players/text_area.rb
43
- - lib/limelight/players/text_box.rb
44
64
  - lib/limelight.jar
65
+ - spec/builtin/players/button_spec.rb
66
+ - spec/builtin/players/check_box_spec.rb
67
+ - spec/builtin/players/combo_box_spec.rb
68
+ - spec/builtin/players/radio_button_spec.rb
69
+ - spec/builtin/players/text_area_spec.rb
70
+ - spec/builtin/players/text_box_spec.rb
45
71
  - spec/casting_director_spec.rb
46
72
  - spec/commands_spec.rb
47
73
  - spec/file_chooser_spec.rb
48
74
  - spec/file_filter_spec.rb
49
75
  - spec/java_util_spec.rb
76
+ - spec/loaders/file_loader_spec.rb
50
77
  - spec/paint_action_spec.rb
51
78
  - spec/pen_spec.rb
52
79
  - spec/producer_spec.rb
@@ -60,34 +87,17 @@ files:
60
87
  - spec/stage_spec.rb
61
88
  - spec/styles_builder_spec.rb
62
89
  - spec/theater_spec.rb
63
- - spec/loaders/file_loader_spec.rb
64
- - spec/players/button_spec.rb
65
- - spec/players/check_box_spec.rb
66
- - spec/players/combo_box_spec.rb
67
- - spec/players/radio_button_spec.rb
68
- - spec/players/text_area_spec.rb
69
- - spec/players/text_box_spec.rb
70
90
  - productions/examples
71
- - productions/stage_composer
72
- - productions/startup
73
91
  - productions/examples/8thlight.com
74
- - productions/examples/calculator
75
- - productions/examples/langstons_ant
76
- - productions/examples/sandbox
77
- - productions/examples/tutorials
78
92
  - productions/examples/8thlight.com/about
79
- - productions/examples/8thlight.com/footer.rb
80
- - productions/examples/8thlight.com/home
81
- - productions/examples/8thlight.com/images
82
- - productions/examples/8thlight.com/menu.rb
83
- - productions/examples/8thlight.com/services
84
- - productions/examples/8thlight.com/stages.rb
85
- - productions/examples/8thlight.com/styles.rb
86
93
  - productions/examples/8thlight.com/about/about.txt
87
94
  - productions/examples/8thlight.com/about/props.rb
88
95
  - productions/examples/8thlight.com/about/styles.rb
96
+ - productions/examples/8thlight.com/footer.rb
97
+ - productions/examples/8thlight.com/home
89
98
  - productions/examples/8thlight.com/home/props.rb
90
99
  - productions/examples/8thlight.com/home/styles.rb
100
+ - productions/examples/8thlight.com/images
91
101
  - productions/examples/8thlight.com/images/anvil.jpg
92
102
  - productions/examples/8thlight.com/images/bg.jpg
93
103
  - productions/examples/8thlight.com/images/botticelli.jpg
@@ -98,156 +108,179 @@ files:
98
108
  - productions/examples/8thlight.com/images/moses.jpg
99
109
  - productions/examples/8thlight.com/images/statemachine_thumbnail.png
100
110
  - productions/examples/8thlight.com/images/thumbnail_book.jpg
111
+ - productions/examples/8thlight.com/menu.rb
112
+ - productions/examples/8thlight.com/services
101
113
  - productions/examples/8thlight.com/services/props.rb
102
114
  - productions/examples/8thlight.com/services/services.txt
103
115
  - productions/examples/8thlight.com/services/styles.rb
116
+ - productions/examples/8thlight.com/stages.rb
117
+ - productions/examples/8thlight.com/styles.rb
118
+ - productions/examples/calculator
104
119
  - productions/examples/calculator/players
105
- - productions/examples/calculator/props.rb
106
- - productions/examples/calculator/styles.rb
107
120
  - productions/examples/calculator/players/button.rb
108
121
  - productions/examples/calculator/players/calculator.rb
109
122
  - productions/examples/calculator/players/calculator_model.rb
123
+ - productions/examples/calculator/props.rb
124
+ - productions/examples/calculator/styles.rb
125
+ - productions/examples/langstons_ant
110
126
  - productions/examples/langstons_ant/html_javascript
111
- - productions/examples/langstons_ant/players
112
- - productions/examples/langstons_ant/props.rb
113
- - productions/examples/langstons_ant/styles.rb
114
127
  - productions/examples/langstons_ant/html_javascript/ant.css
115
128
  - productions/examples/langstons_ant/html_javascript/ant.html
116
129
  - productions/examples/langstons_ant/html_javascript/ant.js
130
+ - productions/examples/langstons_ant/players
117
131
  - productions/examples/langstons_ant/players/ant.rb
118
132
  - productions/examples/langstons_ant/players/log.rb
119
133
  - productions/examples/langstons_ant/players/start_stop_button.rb
120
134
  - productions/examples/langstons_ant/players/world.rb
135
+ - productions/examples/langstons_ant/props.rb
136
+ - productions/examples/langstons_ant/styles.rb
137
+ - productions/examples/sandbox
121
138
  - productions/examples/sandbox/click_me
122
- - productions/examples/sandbox/floaters
123
- - productions/examples/sandbox/gradients
124
- - productions/examples/sandbox/header.rb
125
- - productions/examples/sandbox/homer
126
- - productions/examples/sandbox/images
127
- - productions/examples/sandbox/inputs
128
- - productions/examples/sandbox/players
129
- - productions/examples/sandbox/rounded_corners
130
- - productions/examples/sandbox/scrolling
131
- - productions/examples/sandbox/sketching
132
- - productions/examples/sandbox/stages.rb
133
- - productions/examples/sandbox/styles.rb
134
- - productions/examples/sandbox/teaser
135
139
  - productions/examples/sandbox/click_me/players
140
+ - productions/examples/sandbox/click_me/players/chromaton.rb
136
141
  - productions/examples/sandbox/click_me/props.rb
137
142
  - productions/examples/sandbox/click_me/styles.rb
138
- - productions/examples/sandbox/click_me/players/chromaton.rb
143
+ - productions/examples/sandbox/floaters
139
144
  - productions/examples/sandbox/floaters/players
140
- - productions/examples/sandbox/floaters/props.rb
141
- - productions/examples/sandbox/floaters/styles.rb
142
145
  - productions/examples/sandbox/floaters/players/floater.rb
143
146
  - productions/examples/sandbox/floaters/players/surface.rb
147
+ - productions/examples/sandbox/floaters/props.rb
148
+ - productions/examples/sandbox/floaters/styles.rb
149
+ - productions/examples/sandbox/gradients
144
150
  - productions/examples/sandbox/gradients/players
145
- - productions/examples/sandbox/gradients/props.rb
146
- - productions/examples/sandbox/gradients/styles.rb
147
151
  - productions/examples/sandbox/gradients/players/spinner.rb
148
152
  - productions/examples/sandbox/gradients/players/teaser.rb
149
153
  - productions/examples/sandbox/gradients/players/wave.rb
150
154
  - productions/examples/sandbox/gradients/players/waves.rb
155
+ - productions/examples/sandbox/gradients/props.rb
156
+ - productions/examples/sandbox/gradients/styles.rb
157
+ - productions/examples/sandbox/header.rb
158
+ - productions/examples/sandbox/homer
151
159
  - productions/examples/sandbox/homer/players
160
+ - productions/examples/sandbox/homer/players/homer.rb
152
161
  - productions/examples/sandbox/homer/props.rb
153
162
  - productions/examples/sandbox/homer/styles.rb
154
- - productions/examples/sandbox/homer/players/homer.rb
163
+ - productions/examples/sandbox/images
155
164
  - productions/examples/sandbox/images/arch.jpg
156
165
  - productions/examples/sandbox/images/beach.jpg
157
166
  - productions/examples/sandbox/images/homer.jpg
158
167
  - productions/examples/sandbox/images/limelight_spotlight.jpg
159
168
  - productions/examples/sandbox/images/marilyn.jpg
169
+ - productions/examples/sandbox/inputs
160
170
  - productions/examples/sandbox/inputs/players
161
- - productions/examples/sandbox/inputs/props.rb
162
- - productions/examples/sandbox/inputs/styles.rb
163
171
  - productions/examples/sandbox/inputs/players/button_input.rb
164
172
  - productions/examples/sandbox/inputs/players/check_box_input.rb
165
173
  - productions/examples/sandbox/inputs/players/combo_box_input.rb
166
174
  - productions/examples/sandbox/inputs/players/radio_button_input.rb
167
175
  - productions/examples/sandbox/inputs/players/text_area_input.rb
168
176
  - productions/examples/sandbox/inputs/players/text_box_input.rb
177
+ - productions/examples/sandbox/inputs/props.rb
178
+ - productions/examples/sandbox/inputs/styles.rb
179
+ - productions/examples/sandbox/players
169
180
  - productions/examples/sandbox/players/sandbox.rb
181
+ - productions/examples/sandbox/rounded_corners
170
182
  - productions/examples/sandbox/rounded_corners/players
183
+ - productions/examples/sandbox/rounded_corners/players/box.rb
171
184
  - productions/examples/sandbox/rounded_corners/props.rb
172
185
  - productions/examples/sandbox/rounded_corners/styles.rb
173
- - productions/examples/sandbox/rounded_corners/players/box.rb
186
+ - productions/examples/sandbox/scrolling
174
187
  - productions/examples/sandbox/scrolling/players
188
+ - productions/examples/sandbox/scrolling/players/add_button.rb
189
+ - productions/examples/sandbox/scrolling/players/cell.rb
175
190
  - productions/examples/sandbox/scrolling/props.rb
176
191
  - productions/examples/sandbox/scrolling/styles.rb
177
- - productions/examples/sandbox/scrolling/players/cell.rb
192
+ - productions/examples/sandbox/sketching
178
193
  - productions/examples/sandbox/sketching/players
194
+ - productions/examples/sandbox/sketching/players/sketchpad.rb
179
195
  - productions/examples/sandbox/sketching/props.rb
180
196
  - productions/examples/sandbox/sketching/styles.rb
181
- - productions/examples/sandbox/sketching/players/sketchpad.rb
197
+ - productions/examples/sandbox/sounds
198
+ - productions/examples/sandbox/sounds/bird.au
199
+ - productions/examples/sandbox/sounds/cat.au
200
+ - productions/examples/sandbox/sounds/cow.au
201
+ - productions/examples/sandbox/sounds/dog.au
202
+ - productions/examples/sandbox/sounds/donkey.au
203
+ - productions/examples/sandbox/sounds/duck.au
204
+ - productions/examples/sandbox/sounds/players
205
+ - productions/examples/sandbox/sounds/players/clip.rb
206
+ - productions/examples/sandbox/sounds/props.rb
207
+ - productions/examples/sandbox/sounds/styles.rb
208
+ - productions/examples/sandbox/stages.rb
209
+ - productions/examples/sandbox/styles.rb
210
+ - productions/examples/sandbox/teaser
182
211
  - productions/examples/sandbox/teaser/players
212
+ - productions/examples/sandbox/teaser/players/fader.rb
183
213
  - productions/examples/sandbox/teaser/props.rb
184
214
  - productions/examples/sandbox/teaser/styles.rb
185
- - productions/examples/sandbox/teaser/players/fader.rb
215
+ - productions/examples/tutorials
186
216
  - productions/examples/tutorials/tutorial_1
187
217
  - productions/examples/tutorials/tutorial_1/players
218
+ - productions/examples/tutorials/tutorial_1/players/sample.rb
188
219
  - productions/examples/tutorials/tutorial_1/props.rb
189
220
  - productions/examples/tutorials/tutorial_1/styles.rb
190
- - productions/examples/tutorials/tutorial_1/players/sample.rb
221
+ - productions/stage_composer
191
222
  - productions/stage_composer/init.rb
192
223
  - productions/stage_composer/inspector
193
- - productions/stage_composer/lib
194
- - productions/stage_composer/production.rb
195
- - productions/stage_composer/stages.rb
196
224
  - productions/stage_composer/inspector/players
197
- - productions/stage_composer/inspector/props.rb
198
- - productions/stage_composer/inspector/styles.rb
199
225
  - productions/stage_composer/inspector/players/inspector.rb
200
226
  - productions/stage_composer/inspector/players/prop_row.rb
201
227
  - productions/stage_composer/inspector/players/prop_tree.rb
202
228
  - productions/stage_composer/inspector/players/style_table.rb
203
229
  - productions/stage_composer/inspector/players/style_value.rb
230
+ - productions/stage_composer/inspector/props.rb
231
+ - productions/stage_composer/inspector/styles.rb
232
+ - productions/stage_composer/lib
204
233
  - productions/stage_composer/lib/init.rb
205
234
  - productions/stage_composer/lib/limelight
206
235
  - productions/stage_composer/lib/limelight/composer
207
236
  - productions/stage_composer/lib/limelight/composer/controller.rb
208
237
  - productions/stage_composer/lib/limelight/composer/lethargy.rb
238
+ - productions/stage_composer/production.rb
239
+ - productions/stage_composer/stages.rb
240
+ - productions/startup
209
241
  - productions/startup/images
210
- - productions/startup/players
211
- - productions/startup/props.rb
212
- - productions/startup/styles.rb
213
242
  - productions/startup/images/logo.png
214
243
  - productions/startup/images/splash.png
244
+ - productions/startup/players
215
245
  - productions/startup/players/browse_button.rb
216
246
  - productions/startup/players/download_button.rb
217
247
  - productions/startup/players/sandbox_button.rb
248
+ - productions/startup/props.rb
249
+ - productions/startup/styles.rb
218
250
  - bin/icons
219
- - bin/limelight
220
- - bin/ll
221
- - bin/ll.bat
222
251
  - bin/icons/icon.ico
223
252
  - bin/icons/icon_48.gif
224
253
  - bin/icons/limelight.icns
225
254
  - bin/icons/splash.png
226
- rubygems_version: 1.0.1
227
- rdoc_options: []
228
- signing_key:
229
- cert_chain: []
230
- name: limelight
255
+ - bin/limelight
256
+ - bin/ll
257
+ - bin/ll.bat
231
258
  has_rdoc: false
232
- platform: java
233
- summary: Limelight-0.1.0 - Limelight http://limelight.8thlight.com
234
- default_executable:
235
- bindir: bin
236
- required_rubygems_version: !ruby/object:Gem::Requirement
237
- version:
259
+ homepage: http://limelight.8thlight.com
260
+ post_install_message:
261
+ rdoc_options: []
262
+
263
+ require_paths:
264
+ - lib
265
+ required_ruby_version: !ruby/object:Gem::Requirement
238
266
  requirements:
239
- - - '>='
240
- - !ruby/object:Gem::Version
241
- version: !str 0
242
- required_ruby_version: !ruby/object:Gem::Requirement
267
+ - - ">="
268
+ - !ruby/object:Gem::Version
269
+ version: "0"
243
270
  version:
271
+ required_rubygems_version: !ruby/object:Gem::Requirement
244
272
  requirements:
245
- - - '>='
246
- - !ruby/object:Gem::Version
247
- version: !str 0
248
- require_paths:
249
- - lib
273
+ - - ">="
274
+ - !ruby/object:Gem::Version
275
+ version: "0"
276
+ version:
277
+ requirements: []
278
+
279
+ rubyforge_project: limelight
280
+ rubygems_version: 1.2.0
281
+ signing_key:
250
282
  specification_version: 2
283
+ summary: Limelight-0.2.0 - Limelight http://limelight.8thlight.com
251
284
  test_files:
252
285
  - spec/casting_director_spec.rb
253
286
  - spec/commands_spec.rb
@@ -266,12 +299,3 @@ test_files:
266
299
  - spec/stage_spec.rb
267
300
  - spec/styles_builder_spec.rb
268
301
  - spec/theater_spec.rb
269
- dependencies: []
270
- description: 'Limelight: A dynamic rich client framework and application platform.'
271
- email: limelight@rubyforge.org
272
- authors:
273
- - Micah Martin, 8th Light
274
- extra_rdoc_files: []
275
- requirements: []
276
- rubyforge_project: limelight
277
- autorequire: init