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