robotlegs 1.3.0
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 +4 -0
- data/README.textile +67 -0
- data/Rakefile +2 -0
- data/lib/robotlegs.rb +37 -0
- metadata +87 -0
data/Gemfile
ADDED
data/README.textile
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
|
|
2
|
+
h1. The Robotlegs Sprout Gem
|
|
3
|
+
|
|
4
|
+
h4. requires sprout, v >= 1.0.26.pre
|
|
5
|
+
|
|
6
|
+
Robotlegs ActionScript 3 source wrapped in a Sprout::Specification for implementation into a sprout project and Gem::Specification for distribution as a gem.
|
|
7
|
+
|
|
8
|
+
The sprout will download the Robotlegs matching version zip from the Robotlegs website and the swc will be copied to lib/robotlegs of your sprout project.
|
|
9
|
+
|
|
10
|
+
h3. Installation
|
|
11
|
+
|
|
12
|
+
Intended for use with a project using Project Sprouts.
|
|
13
|
+
|
|
14
|
+
See information concerning Project Sprouts here:
|
|
15
|
+
* "http://github.com/lukebayes/project-sprouts" http://github.com/lukebayes/project-sprouts
|
|
16
|
+
* "http://github.com/lukebayes/sprout-flashsdk" http://github.com/lukebayes/sprout-flashsdk
|
|
17
|
+
|
|
18
|
+
Add the Robotlegs gem to your Gemfile:
|
|
19
|
+
|
|
20
|
+
<pre><code>gem "robotlegs"</code></pre>
|
|
21
|
+
|
|
22
|
+
Add the Robotlegs library dependency to your Rakefile:
|
|
23
|
+
|
|
24
|
+
<pre><code>library :robotlegs</code></pre>
|
|
25
|
+
|
|
26
|
+
Enter this shell command to resolve gem dependency:
|
|
27
|
+
|
|
28
|
+
<pre><code>bundle install</code></pre>
|
|
29
|
+
|
|
30
|
+
h3. Ruby Gem
|
|
31
|
+
|
|
32
|
+
The gem can be installed independently of a project entering this command:
|
|
33
|
+
|
|
34
|
+
<pre><code>gem install robotlegs</code></pre>
|
|
35
|
+
|
|
36
|
+
h3. Additional links
|
|
37
|
+
|
|
38
|
+
* "Robotlegs Site":http://robotlegs.org
|
|
39
|
+
* "Robotlegs on GitHub":http://github.com/robotlegs/robotlegs-framework
|
|
40
|
+
* "Sprouts Site":http://projectsprouts.org
|
|
41
|
+
* "Sprouts on Github":http://github.com/lukebayes/project-sprouts
|
|
42
|
+
* "flashsdk sprout on Github":http://github.com/lukebayes/sprout-flashsdk
|
|
43
|
+
* "Sprouts Community":http://groups.google.com/group/projectsprouts
|
|
44
|
+
|
|
45
|
+
h3. Robotlegs License
|
|
46
|
+
|
|
47
|
+
The MIT License
|
|
48
|
+
|
|
49
|
+
Copyright (c) 2009, 2010 the original author or authors
|
|
50
|
+
|
|
51
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
52
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
53
|
+
in the Software without restriction, including without limitation the rights
|
|
54
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
55
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
56
|
+
furnished to do so, subject to the following conditions:
|
|
57
|
+
|
|
58
|
+
The above copyright notice and this permission notice shall be included in
|
|
59
|
+
all copies or substantial portions of the Software.
|
|
60
|
+
|
|
61
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
62
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
63
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
64
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
65
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
66
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
67
|
+
THE SOFTWARE.
|
data/Rakefile
ADDED
data/lib/robotlegs.rb
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
require 'sprout'
|
|
2
|
+
|
|
3
|
+
module Robotlegs
|
|
4
|
+
|
|
5
|
+
NAME = "robotlegs"
|
|
6
|
+
VERSION = "1.3.0"
|
|
7
|
+
|
|
8
|
+
ZIP_VERSION = "1.3.0"
|
|
9
|
+
|
|
10
|
+
# SVN_URL = "http://svn.puremvc.org/Robotlegs/tags/#{VERSION}/"
|
|
11
|
+
# SVN_DIR = "./#{VERSION}/"
|
|
12
|
+
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
Sprout::Specification.new do |s|
|
|
16
|
+
s.name = Robotlegs::NAME
|
|
17
|
+
s.version = Robotlegs::VERSION
|
|
18
|
+
|
|
19
|
+
# s.add_file_target do |t|
|
|
20
|
+
# t.platform = :universal
|
|
21
|
+
# t.add_library :swc, "../bin"
|
|
22
|
+
# end
|
|
23
|
+
|
|
24
|
+
s.add_remote_file_target do |t|
|
|
25
|
+
# Apply the windows-specific configuration:
|
|
26
|
+
t.platform = :universal
|
|
27
|
+
# Apply the shared platform configuration:
|
|
28
|
+
# Remote Archive:
|
|
29
|
+
t.archive_type = :zip
|
|
30
|
+
t.url = "http://downloads.robotlegs.org/robotlegs-framework-v#{Robotlegs::ZIP_VERSION}.zip"
|
|
31
|
+
t.md5 = "48ce7343e8d004c3bc9e335dc0c2f190"
|
|
32
|
+
t.add_library :swc, "bin/"
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
|
metadata
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: robotlegs
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 27
|
|
5
|
+
prerelease: false
|
|
6
|
+
segments:
|
|
7
|
+
- 1
|
|
8
|
+
- 3
|
|
9
|
+
- 0
|
|
10
|
+
version: 1.3.0
|
|
11
|
+
platform: ruby
|
|
12
|
+
authors: []
|
|
13
|
+
|
|
14
|
+
autorequire:
|
|
15
|
+
bindir: bin
|
|
16
|
+
cert_chain: []
|
|
17
|
+
|
|
18
|
+
date: 2010-10-11 00:00:00 -07:00
|
|
19
|
+
default_executable:
|
|
20
|
+
dependencies:
|
|
21
|
+
- !ruby/object:Gem::Dependency
|
|
22
|
+
name: sprout
|
|
23
|
+
prerelease: false
|
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 961915964
|
|
30
|
+
segments:
|
|
31
|
+
- 1
|
|
32
|
+
- 0
|
|
33
|
+
- 26
|
|
34
|
+
- pre
|
|
35
|
+
version: 1.0.26.pre
|
|
36
|
+
type: :runtime
|
|
37
|
+
version_requirements: *id001
|
|
38
|
+
description:
|
|
39
|
+
email:
|
|
40
|
+
- amoslanka@gmail.com
|
|
41
|
+
executables: []
|
|
42
|
+
|
|
43
|
+
extensions: []
|
|
44
|
+
|
|
45
|
+
extra_rdoc_files: []
|
|
46
|
+
|
|
47
|
+
files:
|
|
48
|
+
- lib/robotlegs.rb
|
|
49
|
+
- Gemfile
|
|
50
|
+
- Rakefile
|
|
51
|
+
- README.textile
|
|
52
|
+
has_rdoc: true
|
|
53
|
+
homepage: http://www.github.com/amoslanka/sprout-robotlegs
|
|
54
|
+
licenses: []
|
|
55
|
+
|
|
56
|
+
post_install_message:
|
|
57
|
+
rdoc_options: []
|
|
58
|
+
|
|
59
|
+
require_paths:
|
|
60
|
+
- lib
|
|
61
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
62
|
+
none: false
|
|
63
|
+
requirements:
|
|
64
|
+
- - ">="
|
|
65
|
+
- !ruby/object:Gem::Version
|
|
66
|
+
hash: 3
|
|
67
|
+
segments:
|
|
68
|
+
- 0
|
|
69
|
+
version: "0"
|
|
70
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
|
+
none: false
|
|
72
|
+
requirements:
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
hash: 3
|
|
76
|
+
segments:
|
|
77
|
+
- 0
|
|
78
|
+
version: "0"
|
|
79
|
+
requirements: []
|
|
80
|
+
|
|
81
|
+
rubyforge_project:
|
|
82
|
+
rubygems_version: 1.3.7
|
|
83
|
+
signing_key:
|
|
84
|
+
specification_version: 3
|
|
85
|
+
summary: The Robotlegs source wrapped in a Sprout::Specification for implementation into a sprout project and Gem::Specification for distribution as a gem.
|
|
86
|
+
test_files: []
|
|
87
|
+
|