sprout 0.7.217 → 0.7.218
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of sprout might be problematic. Click here for more details.
- data/lib/sprout/version.rb +1 -1
- data/rakefile.rb +17 -2
- metadata +17 -3
data/lib/sprout/version.rb
CHANGED
data/rakefile.rb
CHANGED
@@ -12,12 +12,27 @@ require 'lib/sprout/version'
|
|
12
12
|
|
13
13
|
PROJECT = "sprout"
|
14
14
|
NAME = "sprout"
|
15
|
-
SUMMARY = "
|
15
|
+
SUMMARY = "Sprout is an open-source, cross-platform project generation, configuration and build tool, that currently suports ActionScript 2, ActionScript 3, Flex and AIR development."
|
16
16
|
GEM_VERSION = Sprout::VERSION::STRING
|
17
17
|
AUTHOR = "Luke Bayes"
|
18
18
|
EMAIL = "projectsprouts@googlegroups.com"
|
19
19
|
HOMEPAGE = "http://www.projectsprouts.org"
|
20
|
-
DESCRIPTION
|
20
|
+
DESCRIPTION =<<EOF
|
21
|
+
Sprout takes the tedium and frustration out of creating new programming projects by automatically installing and configuring external tools, libraries, commands and build tasks. The current version of Sprout supports ActionScript 2, ActionScript 3, Flex and AIR development.
|
22
|
+
|
23
|
+
To find out what bundles are available, run:
|
24
|
+
|
25
|
+
gem list -r sprout.*bundle
|
26
|
+
|
27
|
+
To create a project from a particular bundle, simply run:
|
28
|
+
|
29
|
+
sprout -n [bundle name] [Project Name]
|
30
|
+
|
31
|
+
For a new ActionScript 3 project named, SomeProject, the command would look like this:
|
32
|
+
|
33
|
+
sprout -n as3 SomeProject
|
34
|
+
|
35
|
+
EOF
|
21
36
|
HOMEPATH = "http://#{PROJECT}.rubyforge.org"
|
22
37
|
RELEASE_TYPES = ["gem"]
|
23
38
|
PKG_LIST = FileList['[a-zA-Z]*',
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sprout
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.218
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luke Bayes
|
@@ -82,7 +82,21 @@ dependencies:
|
|
82
82
|
- !ruby/object:Gem::Version
|
83
83
|
version: 0.9.6
|
84
84
|
version:
|
85
|
-
description:
|
85
|
+
description: |+
|
86
|
+
Sprout takes the tedium and frustration out of creating new programming projects by automatically installing and configuring external tools, libraries, commands and build tasks. The current version of Sprout supports ActionScript 2, ActionScript 3, Flex and AIR development.
|
87
|
+
|
88
|
+
To find out what bundles are available, run:
|
89
|
+
|
90
|
+
gem list -r sprout.*bundle
|
91
|
+
|
92
|
+
To create a project from a particular bundle, simply run:
|
93
|
+
|
94
|
+
sprout -n [bundle name] [Project Name]
|
95
|
+
|
96
|
+
For a new ActionScript 3 project named, SomeProject, the command would look like this:
|
97
|
+
|
98
|
+
sprout -n as3 SomeProject
|
99
|
+
|
86
100
|
email: projectsprouts@googlegroups.com
|
87
101
|
executables:
|
88
102
|
- sprout
|
@@ -167,6 +181,6 @@ rubyforge_project: sprout
|
|
167
181
|
rubygems_version: 1.3.5
|
168
182
|
signing_key:
|
169
183
|
specification_version: 3
|
170
|
-
summary:
|
184
|
+
summary: Sprout is an open-source, cross-platform project generation, configuration and build tool, that currently suports ActionScript 2, ActionScript 3, Flex and AIR development.
|
171
185
|
test_files: []
|
172
186
|
|