sprout 0.3.36 → 0.5.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.
Potentially problematic release.
This version of sprout might be problematic. Click here for more details.
- data/lib/platform.rb +1 -1
- data/lib/sprout/version.rb +2 -2
- data/lib/user.rb +7 -1
- data/rakefile.rb +1 -1
- metadata +1 -1
data/lib/platform.rb
CHANGED
data/lib/sprout/version.rb
CHANGED
data/lib/user.rb
CHANGED
@@ -117,7 +117,13 @@ module PatternPark
|
|
117
117
|
end
|
118
118
|
|
119
119
|
def platform
|
120
|
-
|
120
|
+
if(Platform::OS == :win32)
|
121
|
+
return :win32
|
122
|
+
elsif(Platform::IMPL == :macosx)
|
123
|
+
return :macosx
|
124
|
+
else
|
125
|
+
return Platform::IMPL
|
126
|
+
end
|
121
127
|
end
|
122
128
|
|
123
129
|
def execute(tool, options='')
|
data/rakefile.rb
CHANGED
@@ -107,7 +107,7 @@ end
|
|
107
107
|
desc "Publish and release files to RubyForge."
|
108
108
|
task :release => [:release_confirmation, :package] do
|
109
109
|
system("svn commit -m 'Created release #{VERS}'")
|
110
|
-
system("svn copy -m 'Created tag for release #{VERS}' https://
|
110
|
+
system("svn copy -m 'Created tag for release #{VERS}' https://projectsprouts.googlecode.com/svn/trunk/ https://projectsprouts.googlecode.com/svn/tags/#{VERS}")
|
111
111
|
|
112
112
|
system('rubyforge login')
|
113
113
|
for ext in RELEASE_TYPES
|
metadata
CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.2
|
|
3
3
|
specification_version: 1
|
4
4
|
name: sprout
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.
|
6
|
+
version: 0.5.0
|
7
7
|
date: 2007-06-10 00:00:00 -07:00
|
8
8
|
summary: "Sprouts is an open-source, cross-platform project generation and configuration
|
9
9
|
tool."
|