robotlegs 1.3.0.5.pre → 1.3.0.6.pre
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/Gemfile +1 -1
- data/Gemfile.lock +3 -5
- data/README.mkdn +44 -6
- data/VERSION +1 -1
- data/lib/robotlegs.rb +1 -0
- data/lib/robotlegs/generators/command_generator.rb +10 -7
- data/lib/robotlegs/generators/context_generator.rb +10 -4
- data/lib/robotlegs/generators/mediator_generator.rb +8 -6
- data/lib/robotlegs/generators/proxy_generator.rb +7 -5
- data/lib/robotlegs/generators/robotlegs_helper.rb +11 -0
- data/lib/robotlegs/generators/service_generator.rb +9 -6
- data/lib/robotlegs/generators/templates/RobotlegsCommand.as +1 -1
- data/lib/robotlegs/generators/templates/RobotlegsContext.as +3 -3
- data/lib/robotlegs/generators/templates/RobotlegsGemfile.rb +1 -1
- data/lib/robotlegs/generators/templates/RobotlegsMediator.as +1 -1
- data/lib/robotlegs/generators/templates/RobotlegsProxy.as +1 -1
- data/lib/robotlegs/generators/templates/RobotlegsService.as +1 -1
- data/lib/robotlegs/module.rb +1 -1
- data/test/unit/command_generator_test.rb +14 -3
- data/test/unit/context_generator_test.rb +10 -1
- data/test/unit/mediator_generator_test.rb +9 -1
- data/test/unit/project_generator_test.rb +1 -1
- data/test/unit/proxy_generator_test.rb +10 -2
- data/test/unit/service_generator_test.rb +9 -1
- data/test/unit/test_helper.rb +1 -1
- metadata +6 -27
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -2,21 +2,19 @@ GEM
|
|
2
2
|
remote: http://rubygems.org/
|
3
3
|
specs:
|
4
4
|
archive-tar-minitar (0.5.2)
|
5
|
-
flashsdk (1.0.
|
6
|
-
sprout (>= 1.
|
5
|
+
flashsdk (1.0.18.pre)
|
6
|
+
sprout (>= 1.1.4.pre)
|
7
7
|
mocha (0.9.10)
|
8
8
|
rake
|
9
9
|
open4 (1.0.1)
|
10
10
|
rake (0.8.7)
|
11
|
-
rdoc (2.5.11)
|
12
11
|
rubyzip (0.9.4)
|
13
12
|
shoulda (2.11.3)
|
14
|
-
sprout (1.
|
13
|
+
sprout (1.1.7.pre)
|
15
14
|
archive-tar-minitar (= 0.5.2)
|
16
15
|
bundler (>= 0.9.19)
|
17
16
|
open4 (>= 0.9.6)
|
18
17
|
rake (>= 0.8.7)
|
19
|
-
rdoc (>= 2.5.8)
|
20
18
|
rubyzip (= 0.9.4)
|
21
19
|
|
22
20
|
PLATFORMS
|
data/README.mkdn
CHANGED
@@ -20,16 +20,24 @@ This bundle contains generators for creating:
|
|
20
20
|
## Prerequisites
|
21
21
|
|
22
22
|
* [Ruby](http://www.ruby-lang.org/)
|
23
|
+
* [rvm](http://rvm.beginrescueend.com/) < rvm will save you a ton of permissions headaches.
|
23
24
|
* [Ruby Gems](http://rubygems.org/pages/download)
|
24
25
|
* [git](http://git-scm.com/download)
|
26
|
+
* [bundler](http://gembundler.com/) < gem install bundler
|
25
27
|
* [Sprouts v1-pre](http://github.com/lukebayes/project-sprouts)
|
26
28
|
|
27
29
|
## Install
|
28
30
|
|
29
|
-
|
31
|
+
git clone [this repo]
|
32
|
+
cd sprout-robotlegs
|
33
|
+
bundle install
|
30
34
|
gem build robotlegs.gemspec
|
31
35
|
gem install robotlegs-1.3.0.5.pre.gem
|
32
36
|
|
37
|
+
####Or
|
38
|
+
|
39
|
+
gem install robotlegs --pre
|
40
|
+
|
33
41
|
## Usage
|
34
42
|
|
35
43
|
Project Generator
|
@@ -46,16 +54,46 @@ This bundle contains generators for creating:
|
|
46
54
|
|
47
55
|
Service Generator
|
48
56
|
rl-service SomeService --package=com.foo
|
49
|
-
|
50
|
-
##TODO
|
51
57
|
|
58
|
+
##Development
|
59
|
+
|
60
|
+
####If you want to aid in the development of this gem:
|
61
|
+
fork this repo
|
62
|
+
git clone [your fork]
|
63
|
+
cd sprout-robotlegs
|
64
|
+
bundle install
|
65
|
+
rake test
|
66
|
+
do code in the interface hard
|
67
|
+
rake test
|
68
|
+
gem build robotlegs.gemspec
|
69
|
+
gem install robotlegs
|
70
|
+
try it out rl-project SomeProject --package=com.foo
|
71
|
+
send pull request
|
72
|
+
I will merge your changes
|
73
|
+
I will increment the version and push the gem
|
74
|
+
I will send you a present that you will like
|
75
|
+
|
76
|
+
##Todo
|
77
|
+
####In prioritized order
|
78
|
+
###Generators
|
79
|
+
|
80
|
+
* Split rl-project into three executables
|
81
|
+
1. rl-flex-project
|
82
|
+
|
83
|
+
flex\_project_generator.rb
|
84
|
+
2. rl-as3-project
|
85
|
+
|
86
|
+
as3\_project_generator.rb
|
87
|
+
3. rl-air-project
|
88
|
+
|
89
|
+
air\_project_generator.rb
|
52
90
|
* Event
|
53
|
-
* VO
|
54
|
-
* DTO
|
55
91
|
* Signal
|
56
92
|
* Signals Project
|
57
93
|
* Signal Command
|
58
|
-
*
|
94
|
+
* VO
|
95
|
+
* DTO
|
96
|
+
|
59
97
|
|
60
98
|
## MIT License
|
61
99
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.3.0.
|
1
|
+
1.3.0.6.pre
|
data/lib/robotlegs.rb
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
module Robotlegs
|
2
2
|
class CommandGenerator < FlashSDK::ClassGenerator
|
3
|
-
|
3
|
+
include RobotlegsHelper
|
4
|
+
|
4
5
|
def manifest
|
5
6
|
if(!input.match(/Test$/))
|
6
7
|
directory command_directory do
|
@@ -8,19 +9,21 @@ module Robotlegs
|
|
8
9
|
end
|
9
10
|
end
|
10
11
|
|
11
|
-
|
12
|
-
generator :test_class, :input => "#{fully_qualified_class_name}Test"
|
12
|
+
if test_class
|
13
|
+
generator :test_class, :input => "#{fully_qualified_class_name}Test", :force => true
|
13
14
|
end
|
14
15
|
end
|
15
16
|
|
16
17
|
def command_directory
|
17
|
-
[] << src
|
18
|
+
src_array = [] << src
|
19
|
+
src_array += package_directory.dup << "controller" << "commands"
|
18
20
|
end
|
19
21
|
|
20
|
-
def
|
21
|
-
default_package_name << ".controller" << ".commands"
|
22
|
+
def package_name
|
23
|
+
default_package_name.dup << ".controller" << ".commands"
|
22
24
|
end
|
23
|
-
|
25
|
+
|
24
26
|
end
|
25
27
|
end
|
26
28
|
|
29
|
+
|
@@ -1,6 +1,7 @@
|
|
1
1
|
module Robotlegs
|
2
2
|
class ContextGenerator < FlashSDK::ClassGenerator
|
3
|
-
|
3
|
+
include RobotlegsHelper
|
4
|
+
|
4
5
|
def manifest
|
5
6
|
if(!input.match(/Test$/))
|
6
7
|
directory context_directory do
|
@@ -8,13 +9,18 @@ module Robotlegs
|
|
8
9
|
end
|
9
10
|
end
|
10
11
|
|
11
|
-
|
12
|
-
generator :test_class, :input => "#{fully_qualified_class_name}Test"
|
12
|
+
if test_class
|
13
|
+
generator :test_class, :input => "#{fully_qualified_class_name}Test", :force => true
|
13
14
|
end
|
14
15
|
end
|
15
16
|
|
16
17
|
def context_directory
|
17
|
-
[] << src
|
18
|
+
src_array = [] << src
|
19
|
+
src_array += package_directory
|
20
|
+
end
|
21
|
+
|
22
|
+
def package_name
|
23
|
+
default_package_name.dup
|
18
24
|
end
|
19
25
|
|
20
26
|
end
|
@@ -1,6 +1,7 @@
|
|
1
1
|
module Robotlegs
|
2
2
|
class MediatorGenerator < FlashSDK::ClassGenerator
|
3
|
-
|
3
|
+
include RobotlegsHelper
|
4
|
+
|
4
5
|
def manifest
|
5
6
|
if(!input.match(/Test$/))
|
6
7
|
directory mediator_directory do
|
@@ -8,17 +9,18 @@ module Robotlegs
|
|
8
9
|
end
|
9
10
|
end
|
10
11
|
|
11
|
-
|
12
|
-
generator :test_class, :input => "#{fully_qualified_class_name}Test"
|
12
|
+
if test_class
|
13
|
+
generator :test_class, :input => "#{fully_qualified_class_name}Test", :force => true
|
13
14
|
end
|
14
15
|
end
|
15
16
|
|
16
17
|
def mediator_directory
|
17
|
-
[] << src
|
18
|
+
src_array = [] << src
|
19
|
+
src_array += package_directory.dup << "view" << "mediators"
|
18
20
|
end
|
19
21
|
|
20
|
-
def
|
21
|
-
default_package_name << ".view" << ".mediators"
|
22
|
+
def package_name
|
23
|
+
default_package_name.dup << ".view" << ".mediators"
|
22
24
|
end
|
23
25
|
|
24
26
|
end
|
@@ -1,5 +1,6 @@
|
|
1
1
|
module Robotlegs
|
2
2
|
class ProxyGenerator < FlashSDK::ClassGenerator
|
3
|
+
include RobotlegsHelper
|
3
4
|
|
4
5
|
def manifest
|
5
6
|
if(!input.match(/Test$/))
|
@@ -8,17 +9,18 @@ module Robotlegs
|
|
8
9
|
end
|
9
10
|
end
|
10
11
|
|
11
|
-
|
12
|
-
generator :test_class, :input => "#{fully_qualified_class_name}Test"
|
12
|
+
if test_class
|
13
|
+
generator :test_class, :input => "#{fully_qualified_class_name}Test", :force => true
|
13
14
|
end
|
14
15
|
end
|
15
16
|
|
16
17
|
def proxy_directory
|
17
|
-
[] << src
|
18
|
+
src_array = [] << src
|
19
|
+
src_array += package_directory.dup << "model" << "proxy"
|
18
20
|
end
|
19
21
|
|
20
|
-
def
|
21
|
-
default_package_name << ".model" << ".proxy"
|
22
|
+
def package_name
|
23
|
+
default_package_name.dup << ".model" << ".proxy"
|
22
24
|
end
|
23
25
|
|
24
26
|
end
|
@@ -1,6 +1,7 @@
|
|
1
1
|
module Robotlegs
|
2
2
|
class ServiceGenerator < FlashSDK::ClassGenerator
|
3
|
-
|
3
|
+
include RobotlegsHelper
|
4
|
+
|
4
5
|
def manifest
|
5
6
|
if(!input.match(/Test$/))
|
6
7
|
directory service_directory do
|
@@ -8,18 +9,20 @@ module Robotlegs
|
|
8
9
|
end
|
9
10
|
end
|
10
11
|
|
11
|
-
|
12
|
-
generator :test_class, :input => "#{fully_qualified_class_name}Test"
|
12
|
+
if test_class
|
13
|
+
generator :test_class, :input => "#{fully_qualified_class_name}Test", :force => true
|
13
14
|
end
|
14
15
|
end
|
15
16
|
|
16
17
|
def service_directory
|
17
|
-
[] << src
|
18
|
+
src_array = [] << src
|
19
|
+
src_array += package_directory << 'service'
|
18
20
|
end
|
19
21
|
|
20
|
-
def
|
21
|
-
default_package_name << '.service'
|
22
|
+
def package_name
|
23
|
+
default_package_name.dup << '.service'
|
22
24
|
end
|
23
25
|
|
24
26
|
end
|
25
27
|
end
|
28
|
+
|
@@ -1,17 +1,17 @@
|
|
1
|
-
package <%=
|
1
|
+
package <%= package %>
|
2
2
|
{
|
3
3
|
import flash.display.DisplayObjectContainer;
|
4
4
|
|
5
5
|
import org.robotlegs.mvcs.Context;
|
6
6
|
import org.robotlegs.base.ContextEvent;
|
7
7
|
|
8
|
-
public class <%= class_name %> extends Context
|
8
|
+
public class <%= class_name %>Context extends Context
|
9
9
|
{
|
10
10
|
//---------------------------------------
|
11
11
|
// CONSTRUCTOR
|
12
12
|
//---------------------------------------
|
13
13
|
|
14
|
-
public function <%= class_name %>(contextView:DisplayObjectContainer=null, autoStartup:Boolean=true)
|
14
|
+
public function <%= class_name %>Context(contextView:DisplayObjectContainer=null, autoStartup:Boolean=true)
|
15
15
|
{
|
16
16
|
super(contextView,autoStartup);
|
17
17
|
}
|
data/lib/robotlegs/module.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'test_helper'
|
2
2
|
|
3
3
|
class CommandGeneratorTest < Test::Unit::TestCase
|
4
|
-
include
|
4
|
+
include Sprout::TestHelper
|
5
5
|
|
6
6
|
context "A new Command generator" do
|
7
7
|
|
@@ -22,15 +22,26 @@ class CommandGeneratorTest < Test::Unit::TestCase
|
|
22
22
|
@generator.package = "com.foo.bar"
|
23
23
|
@generator.execute
|
24
24
|
|
25
|
+
# Testing that these methods can be called more than once and not maniuplate the underlying variables
|
26
|
+
assert_equal("com.foo.bar.controller.commands", @generator.package_name);
|
27
|
+
assert_equal("com.foo.bar.controller.commands", @generator.package_name);
|
28
|
+
|
29
|
+
# Testing that these methods can be called more than once and not maniuplate the underlying variables
|
30
|
+
assert_equal(["src", "com", "foo", "bar", "controller", "commands"], @generator.command_directory);
|
31
|
+
assert_equal(["src", "com", "foo", "bar", "controller", "commands"], @generator.command_directory);
|
32
|
+
|
25
33
|
input_dir = File.join(@temp, "src", "com", "foo", "bar", "controller", "commands")
|
26
34
|
assert_directory input_dir
|
27
35
|
|
28
36
|
input_file = File.join(input_dir, "PoodleCommand.as")
|
29
37
|
assert_file input_file do |content|
|
30
|
-
assert_match /com.foo.bar.controller.
|
38
|
+
assert_match /com.foo.bar.controller.commands/, content
|
31
39
|
assert_match /PoodleCommand/, content
|
32
40
|
end
|
33
|
-
|
41
|
+
|
42
|
+
# Testing that these methods can be called more than once and not maniuplate the underlying variables
|
43
|
+
assert_equal("com.foo.bar.controller.commands.PoodleCommand", @generator.fully_qualified_class_name)
|
44
|
+
assert_equal("com.foo.bar.controller.commands.PoodleCommand", @generator.fully_qualified_class_name)
|
34
45
|
end
|
35
46
|
|
36
47
|
end
|
@@ -1,7 +1,8 @@
|
|
1
1
|
require 'test_helper'
|
2
2
|
|
3
3
|
class ContextGeneratorTest < Test::Unit::TestCase
|
4
|
-
include
|
4
|
+
include Sprout::TestHelper
|
5
|
+
|
5
6
|
|
6
7
|
context "A new Context generator" do
|
7
8
|
|
@@ -22,6 +23,10 @@ class ContextGeneratorTest < Test::Unit::TestCase
|
|
22
23
|
@generator.package = "com.foo.bar"
|
23
24
|
@generator.execute
|
24
25
|
|
26
|
+
# Testing that these methods can be called more than once and not maniuplate the underlying variables
|
27
|
+
assert_equal("com.foo.bar", @generator.package_name);
|
28
|
+
assert_equal("com.foo.bar", @generator.package_name);
|
29
|
+
|
25
30
|
input_dir = File.join(@temp, "src", "com", "foo", "bar")
|
26
31
|
assert_directory input_dir
|
27
32
|
|
@@ -30,6 +35,10 @@ class ContextGeneratorTest < Test::Unit::TestCase
|
|
30
35
|
assert_match /com.foo.bar/, content
|
31
36
|
assert_match /BrainwashContext/, content
|
32
37
|
end
|
38
|
+
|
39
|
+
# Testing that these methods can be called more than once and not maniuplate the underlying variables
|
40
|
+
assert_equal("com.foo.bar.BrainwashContext", @generator.fully_qualified_class_name)
|
41
|
+
assert_equal("com.foo.bar.BrainwashContext", @generator.fully_qualified_class_name)
|
33
42
|
|
34
43
|
end
|
35
44
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'test_helper'
|
2
2
|
|
3
3
|
class MediatorGeneratorTest < Test::Unit::TestCase
|
4
|
-
include
|
4
|
+
include Sprout::TestHelper
|
5
5
|
|
6
6
|
context "A new Mediator generator" do
|
7
7
|
|
@@ -22,6 +22,10 @@ class MediatorGeneratorTest < Test::Unit::TestCase
|
|
22
22
|
@generator.package = "com.foo.bar"
|
23
23
|
@generator.execute
|
24
24
|
|
25
|
+
# Testing that these methods can be called more than once and not maniuplate the underlying variables
|
26
|
+
assert_equal("com.foo.bar.view.mediators", @generator.package_name);
|
27
|
+
assert_equal("com.foo.bar.view.mediators", @generator.package_name);
|
28
|
+
|
25
29
|
input_dir = File.join(@temp, "src", "com", "foo", "bar", "view", "mediators")
|
26
30
|
assert_directory input_dir
|
27
31
|
|
@@ -31,6 +35,10 @@ class MediatorGeneratorTest < Test::Unit::TestCase
|
|
31
35
|
assert_match /SasafrassMediator/, content
|
32
36
|
end
|
33
37
|
|
38
|
+
# Testing that these methods can be called more than once and not maniuplate the underlying variables
|
39
|
+
assert_equal("com.foo.bar.view.mediators.SasafrassMediator", @generator.fully_qualified_class_name)
|
40
|
+
assert_equal("com.foo.bar.view.mediators.SasafrassMediator", @generator.fully_qualified_class_name)
|
41
|
+
|
34
42
|
end
|
35
43
|
|
36
44
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'test_helper'
|
2
2
|
|
3
3
|
class ProxyGeneratorTest < Test::Unit::TestCase
|
4
|
-
include
|
4
|
+
include Sprout::TestHelper
|
5
5
|
|
6
6
|
context "A new Proxy generator" do
|
7
7
|
|
@@ -22,6 +22,10 @@ class ProxyGeneratorTest < Test::Unit::TestCase
|
|
22
22
|
@generator.package = "com.foo.bar"
|
23
23
|
@generator.execute
|
24
24
|
|
25
|
+
# Testing that these methods can be called more than once and not maniuplate the underlying variables
|
26
|
+
assert_equal("com.foo.bar.model.proxy", @generator.package_name);
|
27
|
+
assert_equal("com.foo.bar.model.proxy", @generator.package_name);
|
28
|
+
|
25
29
|
input_dir = File.join(@temp, "src", "com", "foo", "bar", "model", "proxy")
|
26
30
|
assert_directory input_dir
|
27
31
|
|
@@ -30,7 +34,11 @@ class ProxyGeneratorTest < Test::Unit::TestCase
|
|
30
34
|
assert_match /com.foo.bar.model.proxy/, content
|
31
35
|
assert_match /UserProxy/, content
|
32
36
|
end
|
33
|
-
|
37
|
+
|
38
|
+
# Testing that these methods can be called more than once and not maniuplate the underlying variables
|
39
|
+
assert_equal("com.foo.bar.model.proxy.UserProxy", @generator.fully_qualified_class_name)
|
40
|
+
assert_equal("com.foo.bar.model.proxy.UserProxy", @generator.fully_qualified_class_name)
|
41
|
+
|
34
42
|
end
|
35
43
|
|
36
44
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'test_helper'
|
2
2
|
|
3
3
|
class ServiceGeneratorTest < Test::Unit::TestCase
|
4
|
-
include
|
4
|
+
include Sprout::TestHelper
|
5
5
|
|
6
6
|
context "A new Service generator" do
|
7
7
|
|
@@ -22,6 +22,10 @@ class ServiceGeneratorTest < Test::Unit::TestCase
|
|
22
22
|
@generator.package = "com.foo.bar"
|
23
23
|
@generator.execute
|
24
24
|
|
25
|
+
# Testing that these methods can be called more than once and not maniuplate the underlying variables
|
26
|
+
assert_equal("com.foo.bar.service", @generator.package_name);
|
27
|
+
assert_equal("com.foo.bar.service", @generator.package_name);
|
28
|
+
|
25
29
|
input_dir = File.join(@temp, "src", "com", "foo", "bar", "service")
|
26
30
|
assert_directory input_dir
|
27
31
|
|
@@ -30,6 +34,10 @@ class ServiceGeneratorTest < Test::Unit::TestCase
|
|
30
34
|
assert_match /com.foo.bar.service/, content
|
31
35
|
assert_match /NoodleService/, content
|
32
36
|
end
|
37
|
+
|
38
|
+
# Testing that these methods can be called more than once and not maniuplate the underlying variables
|
39
|
+
assert_equal("com.foo.bar.service.NoodleService", @generator.fully_qualified_class_name)
|
40
|
+
assert_equal("com.foo.bar.service.NoodleService", @generator.fully_qualified_class_name)
|
33
41
|
|
34
42
|
end
|
35
43
|
|
data/test/unit/test_helper.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: robotlegs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
5
|
-
|
6
|
-
- 1
|
7
|
-
- 3
|
8
|
-
- 0
|
9
|
-
- 5
|
10
|
-
- pre
|
11
|
-
version: 1.3.0.5.pre
|
4
|
+
prerelease: 8
|
5
|
+
version: 1.3.0.6.pre
|
12
6
|
platform: ruby
|
13
7
|
authors:
|
14
8
|
- Kristofer Joseph
|
@@ -16,7 +10,7 @@ autorequire:
|
|
16
10
|
bindir: bin
|
17
11
|
cert_chain: []
|
18
12
|
|
19
|
-
date:
|
13
|
+
date: 2011-03-09 00:00:00 +05:30
|
20
14
|
default_executable:
|
21
15
|
dependencies:
|
22
16
|
- !ruby/object:Gem::Dependency
|
@@ -26,12 +20,7 @@ dependencies:
|
|
26
20
|
requirements:
|
27
21
|
- - ">="
|
28
22
|
- !ruby/object:Gem::Version
|
29
|
-
|
30
|
-
- 1
|
31
|
-
- 0
|
32
|
-
- 13
|
33
|
-
- pre
|
34
|
-
version: 1.0.13.pre
|
23
|
+
version: 1.0.21.pre
|
35
24
|
type: :runtime
|
36
25
|
prerelease: false
|
37
26
|
version_requirements: *id001
|
@@ -42,8 +31,6 @@ dependencies:
|
|
42
31
|
requirements:
|
43
32
|
- - ">="
|
44
33
|
- !ruby/object:Gem::Version
|
45
|
-
segments:
|
46
|
-
- 0
|
47
34
|
version: "0"
|
48
35
|
type: :development
|
49
36
|
prerelease: false
|
@@ -55,8 +42,6 @@ dependencies:
|
|
55
42
|
requirements:
|
56
43
|
- - ">="
|
57
44
|
- !ruby/object:Gem::Version
|
58
|
-
segments:
|
59
|
-
- 0
|
60
45
|
version: "0"
|
61
46
|
type: :development
|
62
47
|
prerelease: false
|
@@ -89,6 +74,7 @@ files:
|
|
89
74
|
- lib/robotlegs/generators/mediator_generator.rb
|
90
75
|
- lib/robotlegs/generators/project_generator.rb
|
91
76
|
- lib/robotlegs/generators/proxy_generator.rb
|
77
|
+
- lib/robotlegs/generators/robotlegs_helper.rb
|
92
78
|
- lib/robotlegs/generators/service_generator.rb
|
93
79
|
- lib/robotlegs/generators/templates/Flex4TestRunner.mxml
|
94
80
|
- lib/robotlegs/generators/templates/RobotlegsCommand.as
|
@@ -103,7 +89,6 @@ files:
|
|
103
89
|
- lib/robotlegs.rb
|
104
90
|
- Rakefile
|
105
91
|
- README.mkdn
|
106
|
-
- robotlegs-1.3.0.5.pre.gem
|
107
92
|
- robotlegs.gemspec
|
108
93
|
- test/unit/command_generator_test.rb
|
109
94
|
- test/unit/context_generator_test.rb
|
@@ -128,23 +113,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
128
113
|
requirements:
|
129
114
|
- - ">="
|
130
115
|
- !ruby/object:Gem::Version
|
131
|
-
segments:
|
132
|
-
- 0
|
133
116
|
version: "0"
|
134
117
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
135
118
|
none: false
|
136
119
|
requirements:
|
137
120
|
- - ">="
|
138
121
|
- !ruby/object:Gem::Version
|
139
|
-
segments:
|
140
|
-
- 1
|
141
|
-
- 3
|
142
|
-
- 7
|
143
122
|
version: 1.3.7
|
144
123
|
requirements: []
|
145
124
|
|
146
125
|
rubyforge_project: sprout-robotlegs
|
147
|
-
rubygems_version: 1.
|
126
|
+
rubygems_version: 1.6.2
|
148
127
|
signing_key:
|
149
128
|
specification_version: 3
|
150
129
|
summary: A library for developing Robotlegs projects with Project Sprouts
|