limelight 0.0.1-java → 0.1.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.
data/lib/limelight.jar CHANGED
Binary file
@@ -17,9 +17,6 @@ module Limelight
17
17
  class Producer
18
18
 
19
19
  def self.open(production_name)
20
- if(production_name[-4..-1] == ".llp")
21
- production_name = unpack_production(production_name)
22
- end
23
20
  producer = new(production_name)
24
21
  producer.open
25
22
  end
@@ -27,6 +24,9 @@ module Limelight
27
24
  attr_reader :loader, :theater, :production
28
25
 
29
26
  def initialize(root_path, theater=nil, production=nil)
27
+ if(root_path[-4..-1] == ".llp")
28
+ root_path = unpack_production(root_path)
29
+ end
30
30
  @loader = Loaders::FileSceneLoader.for_root(root_path)
31
31
  @theater = theater.nil? ? Theater.new : theater
32
32
  @production = production
@@ -131,7 +131,7 @@ module Limelight
131
131
  end
132
132
  end
133
133
 
134
- def self.unpack_production(production_name)
134
+ def unpack_production(production_name)
135
135
  packer = Java::limelight::io.Packer.new()
136
136
  return packer.unpack(production_name)
137
137
  end
@@ -47,6 +47,20 @@ module Limelight
47
47
  end
48
48
  end
49
49
 
50
+ def open_chosen_scene
51
+ options = { :title => "Open New Limelight Scene", :description => "Limelight Production or Scene", :directory => @directory }
52
+ chosen_file = stage.choose_file(options) { |file| Util.is_limelight_scene?(file) || Util.is_limelight_production?(file) }
53
+ if chosen_file
54
+ @directory = File.dirname(chosen_file)
55
+ open_production(chosen_file)
56
+ end
57
+ end
58
+
59
+ def open_production(production_path)
60
+ producer = Producer.new(production_path, @production.theater)
61
+ producer.open
62
+ end
63
+
50
64
  def load(path)
51
65
  @production.producer.open_scene(path, @stage)
52
66
  end
@@ -57,16 +71,6 @@ module Limelight
57
71
  return !(value.to_s.include?("%")) && !(value.to_s == "auto")
58
72
  end
59
73
 
60
- def open_chosen_scene
61
- options = { :title => "Open New Limelight Scene", :description => "Limelight Scene", :directory => @directory }
62
- chosen_file = stage.choose_file(options) { |file| Util.is_limelight_scene?(file) || Util.is_limelight_production?(file) }
63
- if chosen_file
64
- @directory = File.dirname(chosen_file)
65
- producer = Producer.new(chosen_file, @production.theater)
66
- producer.open
67
- end
68
- end
69
-
70
74
  def reload
71
75
  load(@path)
72
76
  end
@@ -78,6 +78,10 @@ module Limelight
78
78
  return chooser.choose_file
79
79
  end
80
80
 
81
+ def alert(message)
82
+ frame.alert(message)
83
+ end
84
+
81
85
  private ###############################################
82
86
 
83
87
  def build_frame
@@ -5,8 +5,8 @@ module Limelight
5
5
  module VERSION #:nodoc:
6
6
  unless defined? MAJOR
7
7
  MAJOR = 0
8
- MINOR = 0
9
- TINY = 1
8
+ MINOR = 1
9
+ TINY = 0
10
10
 
11
11
  STRING = [MAJOR, MINOR, TINY].join('.')
12
12
  TAG = "REL_" + [MAJOR, MINOR, TINY].join('_')
Binary file
@@ -0,0 +1,7 @@
1
+ module BrowseButton
2
+
3
+ def mouse_clicked(e)
4
+ scene.open_chosen_scene
5
+ end
6
+
7
+ end
@@ -0,0 +1,14 @@
1
+ module DownloadButton
2
+
3
+ def mouse_clicked(e)
4
+ url = scene.find("url_field").text
5
+ downloader = Java::limelight.Context.instance.downloader
6
+ begin
7
+ file = downloader.download(url)
8
+ scene.open_production(file.absolute_path)
9
+ rescue Exception => e
10
+ scene.stage.alert(e.to_s)
11
+ end
12
+ end
13
+
14
+ end
@@ -0,0 +1,8 @@
1
+ module SandboxButton
2
+
3
+ def mouse_clicked(e)
4
+ sandbox_path = File.join(Java::limelight.Main.LIMELIGHT_HOME, "productions", "examples", "sandbox")
5
+ scene.open_production(sandbox_path)
6
+ end
7
+
8
+ end
@@ -1,5 +1,25 @@
1
1
  #- Copyright 2008 8th Light, Inc.
2
2
  #- Limelight and all included source files are distributed under terms of the GNU LGPL.
3
3
 
4
- __ :horizontal_alignment => "center", :vertical_alignment => "center", :width => "100%", :height => "100%"
5
- title :text => "Welcome to Limelight", :font_size => "72"
4
+ __ :name => "root"
5
+ welcome :text => "Welcome to..."
6
+ logo
7
+ intro :text => "From here you may..."
8
+ section do
9
+ section_title :text => "1. Open a Production on Your Computer"
10
+ browse_button :text => "Browse My Computer"
11
+ end
12
+ section do
13
+ section_title :text => "2. Download and Open a Production From the Internet"
14
+ section_label :text => "URL:."
15
+ field_wrapper do
16
+ url_field :players => "text_box", :width => "500", :id => "url_field"
17
+ end
18
+ download_button :text => "Download"
19
+ end
20
+ section do
21
+ section_title :text => "3. Open the Limelight Sandbox Production, Full of Examples."
22
+ sandbox_button :text => "Open the Sandbox"
23
+ end
24
+ spacer :width => "100", :height => "110"
25
+ copyright :text => "Copyright 2008 8th Light, Inc."
@@ -0,0 +1,103 @@
1
+ root {
2
+ width "900"
3
+ height "800"
4
+ background_image "images/splash.png"
5
+ }
6
+
7
+ welcome {
8
+ top_padding 50
9
+ left_padding 50
10
+ font_size 50
11
+ font_face "Brush Script MT"
12
+ text_color :white
13
+ width "100%"
14
+ }
15
+
16
+ logo {
17
+ left_margin 100
18
+ width 500
19
+ height 110
20
+ background_image "images/logo.png"
21
+ background_image_fill_strategy :static
22
+ }
23
+
24
+ intro {
25
+ top_margin 25
26
+ left_margin 20
27
+ width "100%"
28
+ text_color :white
29
+ font_face "Arial Rounded MT Bold"
30
+ font_style "italics"
31
+ font_size 25
32
+ }
33
+
34
+ section {
35
+ width "100%"
36
+ margin 20
37
+ rounded_corner_radius 20
38
+ background_color "#fffa"
39
+ secondary_background_color "#fff6"
40
+ gradient :on
41
+ gradient_angle 270
42
+ padding 10
43
+ horizontal_alignment :center
44
+ }
45
+
46
+ section_title {
47
+ width "100%"
48
+ horizontal_alignment :center
49
+ font_size 25
50
+ font_face "Arial Rounded MT Bold"
51
+ text_color "#666"
52
+ }
53
+
54
+ section_label {
55
+ text_color :white
56
+ font_face "Arial Rounded MT Bold"
57
+ font_size 25
58
+ }
59
+
60
+ copyright {
61
+ width "100%"
62
+ text_color :white
63
+ font_face "Times New Roman"
64
+ font_size "14"
65
+ horizontal_alignment :center
66
+ }
67
+
68
+ browse_button {
69
+ horizontal_alignment :center
70
+ width "100%"
71
+ text_color :white
72
+ font_face "Arial Rounded MT Bold"
73
+ font_style "italics"
74
+ font_size 25
75
+ hover {
76
+ text_color "#67b313"
77
+ }
78
+ }
79
+
80
+ field_wrapper {
81
+ top_padding 4
82
+ }
83
+
84
+ url_field {
85
+ top_padding 10
86
+ width 500
87
+ }
88
+
89
+ download_button {
90
+ extends "browse_button"
91
+ width :auto
92
+ left_padding 5
93
+ hover {
94
+ text_color "#67b313"
95
+ }
96
+ }
97
+
98
+ sandbox_button{
99
+ extends "browse_button"
100
+ hover {
101
+ text_color "#67b313"
102
+ }
103
+ }
metadata CHANGED
@@ -1,26 +1,12 @@
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
1
+ --- !ruby/object:Gem::Specification
2
+ extensions: []
3
+ homepage: http://limelight.8thlight.com
18
4
  executables:
19
5
  - limelight
20
- extensions: []
21
-
22
- extra_rdoc_files: []
23
-
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
24
10
  files:
25
11
  - lib/init.rb
26
12
  - lib/limelight/build_exception.rb
@@ -31,16 +17,9 @@ files:
31
17
  - lib/limelight/file_filter.rb
32
18
  - lib/limelight/java_util.rb
33
19
  - lib/limelight/limelight_exception.rb
34
- - lib/limelight/loaders/file_scene_loader.rb
35
20
  - lib/limelight/menu_bar.rb
36
21
  - lib/limelight/paint_action.rb
37
22
  - 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
23
  - lib/limelight/players.rb
45
24
  - lib/limelight/producer.rb
46
25
  - lib/limelight/production.rb
@@ -55,21 +34,21 @@ files:
55
34
  - lib/limelight/theater.rb
56
35
  - lib/limelight/util.rb
57
36
  - 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
58
44
  - lib/limelight.jar
59
45
  - spec/casting_director_spec.rb
60
46
  - spec/commands_spec.rb
61
47
  - spec/file_chooser_spec.rb
62
48
  - spec/file_filter_spec.rb
63
49
  - spec/java_util_spec.rb
64
- - spec/loaders/file_loader_spec.rb
65
50
  - spec/paint_action_spec.rb
66
51
  - 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
52
  - spec/producer_spec.rb
74
53
  - spec/production_builder_spec.rb
75
54
  - spec/production_spec.rb
@@ -81,17 +60,34 @@ files:
81
60
  - spec/stage_spec.rb
82
61
  - spec/styles_builder_spec.rb
83
62
  - 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
84
70
  - productions/examples
71
+ - productions/stage_composer
72
+ - productions/startup
85
73
  - productions/examples/8thlight.com
74
+ - productions/examples/calculator
75
+ - productions/examples/langstons_ant
76
+ - productions/examples/sandbox
77
+ - productions/examples/tutorials
86
78
  - 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
87
86
  - productions/examples/8thlight.com/about/about.txt
88
87
  - productions/examples/8thlight.com/about/props.rb
89
88
  - productions/examples/8thlight.com/about/styles.rb
90
- - productions/examples/8thlight.com/footer.rb
91
- - productions/examples/8thlight.com/home
92
89
  - productions/examples/8thlight.com/home/props.rb
93
90
  - productions/examples/8thlight.com/home/styles.rb
94
- - productions/examples/8thlight.com/images
95
91
  - productions/examples/8thlight.com/images/anvil.jpg
96
92
  - productions/examples/8thlight.com/images/bg.jpg
97
93
  - productions/examples/8thlight.com/images/botticelli.jpg
@@ -102,159 +98,156 @@ files:
102
98
  - productions/examples/8thlight.com/images/moses.jpg
103
99
  - productions/examples/8thlight.com/images/statemachine_thumbnail.png
104
100
  - productions/examples/8thlight.com/images/thumbnail_book.jpg
105
- - productions/examples/8thlight.com/menu.rb
106
- - productions/examples/8thlight.com/services
107
101
  - productions/examples/8thlight.com/services/props.rb
108
102
  - productions/examples/8thlight.com/services/services.txt
109
103
  - 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
104
  - productions/examples/calculator/players
105
+ - productions/examples/calculator/props.rb
106
+ - productions/examples/calculator/styles.rb
114
107
  - productions/examples/calculator/players/button.rb
115
108
  - productions/examples/calculator/players/calculator.rb
116
109
  - 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
110
  - 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
121
114
  - productions/examples/langstons_ant/html_javascript/ant.css
122
115
  - productions/examples/langstons_ant/html_javascript/ant.html
123
116
  - productions/examples/langstons_ant/html_javascript/ant.js
124
- - productions/examples/langstons_ant/players
125
117
  - productions/examples/langstons_ant/players/ant.rb
126
118
  - productions/examples/langstons_ant/players/log.rb
127
119
  - productions/examples/langstons_ant/players/start_stop_button.rb
128
120
  - 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
121
  - 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
133
135
  - productions/examples/sandbox/click_me/players
134
- - productions/examples/sandbox/click_me/players/chromaton.rb
135
136
  - productions/examples/sandbox/click_me/props.rb
136
137
  - productions/examples/sandbox/click_me/styles.rb
137
- - productions/examples/sandbox/floaters
138
+ - productions/examples/sandbox/click_me/players/chromaton.rb
138
139
  - productions/examples/sandbox/floaters/players
139
- - productions/examples/sandbox/floaters/players/floater.rb
140
- - productions/examples/sandbox/floaters/players/surface.rb
141
140
  - productions/examples/sandbox/floaters/props.rb
142
141
  - productions/examples/sandbox/floaters/styles.rb
143
- - productions/examples/sandbox/gradients
142
+ - productions/examples/sandbox/floaters/players/floater.rb
143
+ - productions/examples/sandbox/floaters/players/surface.rb
144
144
  - productions/examples/sandbox/gradients/players
145
+ - productions/examples/sandbox/gradients/props.rb
146
+ - productions/examples/sandbox/gradients/styles.rb
145
147
  - productions/examples/sandbox/gradients/players/spinner.rb
146
148
  - productions/examples/sandbox/gradients/players/teaser.rb
147
149
  - productions/examples/sandbox/gradients/players/wave.rb
148
150
  - 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
151
  - productions/examples/sandbox/homer/players
154
- - productions/examples/sandbox/homer/players/homer.rb
155
152
  - productions/examples/sandbox/homer/props.rb
156
153
  - productions/examples/sandbox/homer/styles.rb
157
- - productions/examples/sandbox/images
154
+ - productions/examples/sandbox/homer/players/homer.rb
158
155
  - productions/examples/sandbox/images/arch.jpg
159
156
  - productions/examples/sandbox/images/beach.jpg
160
157
  - productions/examples/sandbox/images/homer.jpg
161
158
  - productions/examples/sandbox/images/limelight_spotlight.jpg
162
159
  - productions/examples/sandbox/images/marilyn.jpg
163
- - productions/examples/sandbox/inputs
164
160
  - productions/examples/sandbox/inputs/players
161
+ - productions/examples/sandbox/inputs/props.rb
162
+ - productions/examples/sandbox/inputs/styles.rb
165
163
  - productions/examples/sandbox/inputs/players/button_input.rb
166
164
  - productions/examples/sandbox/inputs/players/check_box_input.rb
167
165
  - productions/examples/sandbox/inputs/players/combo_box_input.rb
168
166
  - productions/examples/sandbox/inputs/players/radio_button_input.rb
169
167
  - productions/examples/sandbox/inputs/players/text_area_input.rb
170
168
  - 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
169
  - productions/examples/sandbox/players/sandbox.rb
175
- - productions/examples/sandbox/rounded_corners
176
170
  - productions/examples/sandbox/rounded_corners/players
177
- - productions/examples/sandbox/rounded_corners/players/box.rb
178
171
  - productions/examples/sandbox/rounded_corners/props.rb
179
172
  - productions/examples/sandbox/rounded_corners/styles.rb
180
- - productions/examples/sandbox/scrolling
173
+ - productions/examples/sandbox/rounded_corners/players/box.rb
181
174
  - productions/examples/sandbox/scrolling/players
182
- - productions/examples/sandbox/scrolling/players/cell.rb
183
175
  - productions/examples/sandbox/scrolling/props.rb
184
176
  - productions/examples/sandbox/scrolling/styles.rb
185
- - productions/examples/sandbox/sketching
177
+ - productions/examples/sandbox/scrolling/players/cell.rb
186
178
  - productions/examples/sandbox/sketching/players
187
- - productions/examples/sandbox/sketching/players/sketchpad.rb
188
179
  - productions/examples/sandbox/sketching/props.rb
189
180
  - productions/examples/sandbox/sketching/styles.rb
190
- - productions/examples/sandbox/stages.rb
191
- - productions/examples/sandbox/styles.rb
192
- - productions/examples/sandbox/teaser
181
+ - productions/examples/sandbox/sketching/players/sketchpad.rb
193
182
  - productions/examples/sandbox/teaser/players
194
- - productions/examples/sandbox/teaser/players/fader.rb
195
183
  - productions/examples/sandbox/teaser/props.rb
196
184
  - productions/examples/sandbox/teaser/styles.rb
197
- - productions/examples/tutorials
185
+ - productions/examples/sandbox/teaser/players/fader.rb
198
186
  - productions/examples/tutorials/tutorial_1
199
187
  - productions/examples/tutorials/tutorial_1/players
200
- - productions/examples/tutorials/tutorial_1/players/sample.rb
201
188
  - productions/examples/tutorials/tutorial_1/props.rb
202
189
  - productions/examples/tutorials/tutorial_1/styles.rb
203
- - productions/stage_composer
190
+ - productions/examples/tutorials/tutorial_1/players/sample.rb
204
191
  - productions/stage_composer/init.rb
205
192
  - productions/stage_composer/inspector
193
+ - productions/stage_composer/lib
194
+ - productions/stage_composer/production.rb
195
+ - productions/stage_composer/stages.rb
206
196
  - productions/stage_composer/inspector/players
197
+ - productions/stage_composer/inspector/props.rb
198
+ - productions/stage_composer/inspector/styles.rb
207
199
  - productions/stage_composer/inspector/players/inspector.rb
208
200
  - productions/stage_composer/inspector/players/prop_row.rb
209
201
  - productions/stage_composer/inspector/players/prop_tree.rb
210
202
  - productions/stage_composer/inspector/players/style_table.rb
211
203
  - 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
204
  - productions/stage_composer/lib/init.rb
216
205
  - productions/stage_composer/lib/limelight
217
206
  - productions/stage_composer/lib/limelight/composer
218
207
  - productions/stage_composer/lib/limelight/composer/controller.rb
219
208
  - productions/stage_composer/lib/limelight/composer/lethargy.rb
220
- - productions/stage_composer/production.rb
221
- - productions/stage_composer/stages.rb
222
- - productions/startup
209
+ - productions/startup/images
210
+ - productions/startup/players
223
211
  - productions/startup/props.rb
212
+ - productions/startup/styles.rb
213
+ - productions/startup/images/logo.png
214
+ - productions/startup/images/splash.png
215
+ - productions/startup/players/browse_button.rb
216
+ - productions/startup/players/download_button.rb
217
+ - productions/startup/players/sandbox_button.rb
224
218
  - bin/icons
219
+ - bin/limelight
220
+ - bin/ll
221
+ - bin/ll.bat
225
222
  - bin/icons/icon.ico
226
223
  - bin/icons/icon_48.gif
227
224
  - bin/icons/limelight.icns
228
225
  - 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:
226
+ rubygems_version: 1.0.1
235
227
  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"
228
+ signing_key:
229
+ cert_chain: []
230
+ name: limelight
231
+ 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
244
237
  version:
245
- required_rubygems_version: !ruby/object:Gem::Requirement
246
238
  requirements:
247
- - - ">="
248
- - !ruby/object:Gem::Version
249
- version: "0"
239
+ - - '>='
240
+ - !ruby/object:Gem::Version
241
+ version: !str 0
242
+ required_ruby_version: !ruby/object:Gem::Requirement
250
243
  version:
251
- requirements: []
252
-
253
- rubyforge_project: limelight
254
- rubygems_version: 1.0.1
255
- signing_key:
244
+ requirements:
245
+ - - '>='
246
+ - !ruby/object:Gem::Version
247
+ version: !str 0
248
+ require_paths:
249
+ - lib
256
250
  specification_version: 2
257
- summary: Limelight-0.0.1 - Limelight http://limelight.8thlight.com
258
251
  test_files:
259
252
  - spec/casting_director_spec.rb
260
253
  - spec/commands_spec.rb
@@ -273,3 +266,12 @@ test_files:
273
266
  - spec/stage_spec.rb
274
267
  - spec/styles_builder_spec.rb
275
268
  - 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