limelight 0.1.0-java → 0.2.0-java
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/limelight +0 -0
- data/bin/ll +2 -2
- data/bin/ll.bat +2 -2
- data/lib/init.rb +5 -3
- data/lib/limelight.jar +0 -0
- data/lib/limelight/animation.rb +20 -0
- data/lib/limelight/build_exception.rb +1 -1
- data/lib/limelight/builtin/players.rb +12 -0
- data/lib/limelight/builtin/players/button.rb +24 -0
- data/lib/limelight/builtin/players/check_box.rb +31 -0
- data/lib/limelight/builtin/players/combo_box.rb +55 -0
- data/lib/limelight/builtin/players/combo_box_popup_list.rb +19 -0
- data/lib/limelight/builtin/players/combo_box_popup_list_item.rb +21 -0
- data/lib/limelight/builtin/players/curtains.rb +22 -0
- data/lib/limelight/builtin/players/radio_button.rb +41 -0
- data/lib/limelight/builtin/players/text_area.rb +25 -0
- data/lib/limelight/builtin/players/text_box.rb +25 -0
- data/lib/limelight/builtin/styles.rb +35 -0
- data/lib/limelight/button_group_cache.rb +2 -2
- data/lib/limelight/casting_director.rb +9 -6
- data/lib/limelight/commands.rb +3 -3
- data/lib/limelight/file_chooser.rb +1 -1
- data/lib/limelight/file_filter.rb +1 -1
- data/lib/limelight/java_couplings.rb +57 -0
- data/lib/limelight/java_util.rb +1 -1
- data/lib/limelight/limelight_exception.rb +1 -1
- data/lib/limelight/loaders/file_scene_loader.rb +3 -2
- data/lib/limelight/menu_bar.rb +1 -1
- data/lib/limelight/paint_action.rb +2 -2
- data/lib/limelight/pen.rb +2 -2
- data/lib/limelight/producer.rb +21 -5
- data/lib/limelight/production.rb +1 -1
- data/lib/limelight/production_builder.rb +1 -1
- data/lib/limelight/prop.rb +49 -39
- data/lib/limelight/prop_builder.rb +1 -1
- data/lib/limelight/scene.rb +3 -3
- data/lib/limelight/stage.rb +5 -5
- data/lib/limelight/stage_builder.rb +1 -1
- data/lib/limelight/styles.rb +2 -2
- data/lib/limelight/styles_builder.rb +7 -7
- data/lib/limelight/theater.rb +2 -2
- data/lib/limelight/util.rb +1 -1
- data/lib/limelight/version.rb +2 -2
- data/productions/examples/8thlight.com/about/about.txt +3 -3
- data/productions/examples/8thlight.com/about/props.rb +1 -1
- data/productions/examples/8thlight.com/about/styles.rb +1 -1
- data/productions/examples/8thlight.com/footer.rb +1 -1
- data/productions/examples/8thlight.com/home/props.rb +1 -1
- data/productions/examples/8thlight.com/home/styles.rb +1 -1
- data/productions/examples/8thlight.com/images/bg.jpg +0 -0
- data/productions/examples/8thlight.com/images/button_bg.jpg +0 -0
- data/productions/examples/8thlight.com/images/canvas_bg.jpg +0 -0
- data/productions/examples/8thlight.com/images/thumbnail_book.jpg +0 -0
- data/productions/examples/8thlight.com/menu.rb +1 -1
- data/productions/examples/8thlight.com/services/props.rb +1 -1
- data/productions/examples/8thlight.com/services/services.txt +1 -1
- data/productions/examples/8thlight.com/services/styles.rb +1 -1
- data/productions/examples/8thlight.com/stages.rb +1 -1
- data/productions/examples/8thlight.com/styles.rb +8 -1
- data/productions/examples/calculator/players/button.rb +1 -1
- data/productions/examples/calculator/players/calculator.rb +1 -1
- data/productions/examples/calculator/players/calculator_model.rb +1 -1
- data/productions/examples/calculator/props.rb +1 -1
- data/productions/examples/calculator/styles.rb +1 -1
- data/productions/examples/langstons_ant/players/ant.rb +1 -1
- data/productions/examples/langstons_ant/players/log.rb +1 -1
- data/productions/examples/langstons_ant/players/start_stop_button.rb +1 -1
- data/productions/examples/langstons_ant/players/world.rb +1 -1
- data/productions/examples/langstons_ant/props.rb +1 -1
- data/productions/examples/langstons_ant/styles.rb +1 -1
- data/productions/examples/sandbox/click_me/players/chromaton.rb +1 -1
- data/productions/examples/sandbox/click_me/props.rb +1 -1
- data/productions/examples/sandbox/click_me/styles.rb +1 -1
- data/productions/examples/sandbox/floaters/players/floater.rb +21 -11
- data/productions/examples/sandbox/floaters/players/surface.rb +5 -1
- data/productions/examples/sandbox/floaters/props.rb +1 -1
- data/productions/examples/sandbox/floaters/styles.rb +1 -1
- data/productions/examples/sandbox/gradients/players/spinner.rb +5 -12
- data/productions/examples/sandbox/gradients/players/teaser.rb +7 -14
- data/productions/examples/sandbox/gradients/players/wave.rb +7 -14
- data/productions/examples/sandbox/gradients/players/waves.rb +7 -14
- data/productions/examples/sandbox/gradients/props.rb +1 -1
- data/productions/examples/sandbox/gradients/styles.rb +1 -1
- data/productions/examples/sandbox/header.rb +2 -1
- data/productions/examples/sandbox/homer/players/homer.rb +12 -8
- data/productions/examples/sandbox/homer/props.rb +1 -1
- data/productions/examples/sandbox/homer/styles.rb +1 -1
- data/productions/examples/sandbox/inputs/players/button_input.rb +1 -1
- data/productions/examples/sandbox/inputs/players/check_box_input.rb +1 -1
- data/productions/examples/sandbox/inputs/players/combo_box_input.rb +3 -3
- data/productions/examples/sandbox/inputs/players/radio_button_input.rb +1 -1
- data/productions/examples/sandbox/inputs/players/text_area_input.rb +1 -1
- data/productions/examples/sandbox/inputs/players/text_box_input.rb +1 -1
- data/productions/examples/sandbox/inputs/props.rb +3 -3
- data/productions/examples/sandbox/inputs/styles.rb +2 -1
- data/productions/examples/sandbox/players/sandbox.rb +1 -1
- data/productions/examples/sandbox/rounded_corners/players/box.rb +1 -1
- data/productions/examples/sandbox/rounded_corners/props.rb +1 -1
- data/productions/examples/sandbox/rounded_corners/styles.rb +1 -1
- data/productions/examples/sandbox/scrolling/players/add_button.rb +19 -0
- data/productions/examples/sandbox/scrolling/players/cell.rb +1 -2
- data/productions/examples/sandbox/scrolling/props.rb +9 -4
- data/productions/examples/sandbox/scrolling/styles.rb +10 -1
- data/productions/examples/sandbox/sketching/players/sketchpad.rb +1 -1
- data/productions/examples/sandbox/sketching/props.rb +1 -1
- data/productions/examples/sandbox/sketching/styles.rb +1 -2
- data/productions/examples/sandbox/sounds/bird.au +0 -0
- data/productions/examples/sandbox/sounds/cat.au +0 -0
- data/productions/examples/sandbox/sounds/cow.au +0 -0
- data/productions/examples/sandbox/sounds/dog.au +0 -0
- data/productions/examples/sandbox/sounds/donkey.au +0 -0
- data/productions/examples/sandbox/sounds/duck.au +0 -0
- data/productions/examples/sandbox/sounds/players/clip.rb +10 -0
- data/productions/examples/sandbox/sounds/props.rb +10 -0
- data/productions/examples/sandbox/sounds/styles.rb +17 -0
- data/productions/examples/sandbox/stages.rb +2 -1
- data/productions/examples/sandbox/styles.rb +6 -6
- data/productions/examples/sandbox/teaser/players/fader.rb +22 -16
- data/productions/examples/sandbox/teaser/props.rb +1 -1
- data/productions/examples/sandbox/teaser/styles.rb +1 -1
- data/productions/examples/tutorials/tutorial_1/players/sample.rb +1 -1
- data/productions/examples/tutorials/tutorial_1/props.rb +1 -1
- data/productions/examples/tutorials/tutorial_1/styles.rb +1 -1
- data/productions/stage_composer/init.rb +1 -1
- data/productions/stage_composer/inspector/players/inspector.rb +1 -1
- data/productions/stage_composer/inspector/players/prop_row.rb +1 -1
- data/productions/stage_composer/inspector/players/prop_tree.rb +1 -1
- data/productions/stage_composer/inspector/players/style_table.rb +1 -1
- data/productions/stage_composer/inspector/players/style_value.rb +1 -1
- data/productions/stage_composer/inspector/props.rb +2 -2
- data/productions/stage_composer/inspector/styles.rb +3 -3
- data/productions/stage_composer/lib/init.rb +1 -1
- data/productions/stage_composer/lib/limelight/composer/controller.rb +1 -1
- data/productions/stage_composer/lib/limelight/composer/lethargy.rb +1 -1
- data/productions/stage_composer/production.rb +1 -1
- data/productions/stage_composer/stages.rb +1 -1
- data/productions/startup/players/browse_button.rb +3 -0
- data/productions/startup/players/download_button.rb +4 -1
- data/productions/startup/players/sandbox_button.rb +4 -1
- data/productions/startup/props.rb +3 -5
- data/productions/startup/styles.rb +5 -5
- data/spec/builtin/players/button_spec.rb +21 -0
- data/spec/builtin/players/check_box_spec.rb +29 -0
- data/spec/builtin/players/combo_box_spec.rb +29 -0
- data/spec/{players → builtin/players}/radio_button_spec.rb +9 -20
- data/spec/builtin/players/text_area_spec.rb +27 -0
- data/spec/builtin/players/text_box_spec.rb +27 -0
- data/spec/casting_director_spec.rb +3 -3
- data/spec/commands_spec.rb +2 -2
- data/spec/file_chooser_spec.rb +1 -1
- data/spec/file_filter_spec.rb +1 -1
- data/spec/java_util_spec.rb +1 -1
- data/spec/loaders/file_loader_spec.rb +1 -1
- data/spec/paint_action_spec.rb +1 -1
- data/spec/pen_spec.rb +1 -1
- data/spec/producer_spec.rb +14 -4
- data/spec/production_builder_spec.rb +1 -1
- data/spec/production_spec.rb +1 -1
- data/spec/prop_builder_spec.rb +1 -1
- data/spec/prop_spec.rb +66 -5
- data/spec/scene_spec.rb +2 -2
- data/spec/spec_helper.rb +4 -1
- data/spec/stage_builder_spec.rb +1 -1
- data/spec/stage_spec.rb +1 -1
- data/spec/styles_builder_spec.rb +34 -2
- data/spec/theater_spec.rb +1 -1
- metadata +130 -106
- data/lib/limelight/players.rb +0 -9
- data/lib/limelight/players/button.rb +0 -29
- data/lib/limelight/players/check_box.rb +0 -38
- data/lib/limelight/players/combo_box.rb +0 -44
- data/lib/limelight/players/radio_button.rb +0 -47
- data/lib/limelight/players/text_area.rb +0 -25
- data/lib/limelight/players/text_box.rb +0 -25
- data/spec/players/button_spec.rb +0 -31
- data/spec/players/check_box_spec.rb +0 -40
- data/spec/players/combo_box_spec.rb +0 -39
- data/spec/players/text_area_spec.rb +0 -37
- data/spec/players/text_box_spec.rb +0 -37
data/spec/stage_builder_spec.rb
CHANGED
data/spec/stage_spec.rb
CHANGED
data/spec/styles_builder_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")
|
@@ -22,7 +22,7 @@ describe Limelight::StylesBuilder do
|
|
22
22
|
end
|
23
23
|
|
24
24
|
result.size.should == 1
|
25
|
-
result["root"].class.should ==
|
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
metadata
CHANGED
@@ -1,26 +1,53 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
2
|
-
|
3
|
-
|
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
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
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/
|
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/
|
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/
|
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/
|
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/
|
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/
|
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/
|
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
|
-
|
227
|
-
|
228
|
-
|
229
|
-
cert_chain: []
|
230
|
-
name: limelight
|
255
|
+
- bin/limelight
|
256
|
+
- bin/ll
|
257
|
+
- bin/ll.bat
|
231
258
|
has_rdoc: false
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
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:
|
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:
|
248
|
-
|
249
|
-
|
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
|