sprout 0.7.218 → 0.7.219
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 +15 -14
- metadata +4 -16
data/lib/sprout/version.rb
CHANGED
data/rakefile.rb
CHANGED
@@ -18,20 +18,7 @@ AUTHOR = "Luke Bayes"
|
|
18
18
|
EMAIL = "projectsprouts@googlegroups.com"
|
19
19
|
HOMEPAGE = "http://www.projectsprouts.org"
|
20
20
|
DESCRIPTION =<<EOF
|
21
|
-
Sprout
|
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
|
-
|
21
|
+
Sprout is a modular set of tools that take the tedium and frustration out of creating and managing programming projects by automatically installing and configuring external tools, libraries, commands and build tasks. Bundles are currently available to support ActionScript 2, ActionScript 3, Flex and AIR development.
|
35
22
|
EOF
|
36
23
|
HOMEPATH = "http://#{PROJECT}.rubyforge.org"
|
37
24
|
RELEASE_TYPES = ["gem"]
|
@@ -86,6 +73,17 @@ osx_spec = Gem::Specification.new do |s|
|
|
86
73
|
s.add_dependency('open4', '>= 0.9.6')
|
87
74
|
end
|
88
75
|
|
76
|
+
osx_snow_leopard_spec = Gem::Specification.new do |s|
|
77
|
+
apply_shared_spec(s)
|
78
|
+
s.platform = 'i686-darwin10'
|
79
|
+
# Add snow-leopard-specific dependencies here
|
80
|
+
|
81
|
+
# Can't really depend on rb-appscript b/c this requires OS X dev-tool disk
|
82
|
+
#s.add_dependency('rb-appscript', '>= 0.5.0')
|
83
|
+
s.add_dependency('open4', '>= 0.9.6')
|
84
|
+
end
|
85
|
+
|
86
|
+
|
89
87
|
nix_spec = Gem::Specification.new do |s|
|
90
88
|
apply_shared_spec(s)
|
91
89
|
s.platform = 'x86-linux'
|
@@ -109,6 +107,9 @@ end
|
|
109
107
|
Rake::GemPackageTask.new(osx_spec) do |pkg|
|
110
108
|
end
|
111
109
|
|
110
|
+
Rake::GemPackageTask.new(osx_snow_leopard_spec) do |pkg|
|
111
|
+
end
|
112
|
+
|
112
113
|
Rake::GemPackageTask.new(nix_spec) do |pkg|
|
113
114
|
end
|
114
115
|
|
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.219
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luke Bayes
|
@@ -82,21 +82,9 @@ dependencies:
|
|
82
82
|
- !ruby/object:Gem::Version
|
83
83
|
version: 0.9.6
|
84
84
|
version:
|
85
|
-
description:
|
86
|
-
Sprout
|
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
|
-
|
85
|
+
description: |
|
86
|
+
Sprout is a modular set of tools that take the tedium and frustration out of creating and managing programming projects by automatically installing and configuring external tools, libraries, commands and build tasks. Bundles are currently available to support ActionScript 2, ActionScript 3, Flex and AIR development.
|
87
|
+
|
100
88
|
email: projectsprouts@googlegroups.com
|
101
89
|
executables:
|
102
90
|
- sprout
|