sproutcore 1.0.1025 → 1.0.1026
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +11 -2
- data/VERSION.yml +3 -3
- metadata +2 -2
data/Rakefile
CHANGED
@@ -46,7 +46,7 @@ Jeweler::Tasks.new do |gemspec|
|
|
46
46
|
gemspec.name = 'sproutcore'
|
47
47
|
gemspec.authors = 'Sprout Systems, Inc. Apple Inc. and contributors'
|
48
48
|
gemspec.email = 'contact@sproutcore.com'
|
49
|
-
gemspec.homepage = 'http://www.sproutcore.com
|
49
|
+
gemspec.homepage = 'http://www.sproutcore.com'
|
50
50
|
gemspec.summary = "SproutCore is a platform for building native look-and-feel applications on the web"
|
51
51
|
|
52
52
|
gemspec.add_dependency 'rack', '>= 0.9.1'
|
@@ -162,9 +162,18 @@ namespace :release do
|
|
162
162
|
git(full_path, "tag -f #{tag_name}")
|
163
163
|
end
|
164
164
|
end
|
165
|
+
|
166
|
+
task :push_tags => :tag do
|
167
|
+
tag_name = "REL-#{RELEASE_VERSION}"
|
168
|
+
DIST.keys.push('abbot').each do |rel_path|
|
169
|
+
full_path = rel_path=='abbot' ? ROOT_PATH : (ROOT_PATH / rel_path)
|
170
|
+
git(full_path, "push origin #{tag_name}")
|
171
|
+
end
|
172
|
+
end
|
173
|
+
|
165
174
|
|
166
175
|
desc "prepare release. verify clean, update version, tag"
|
167
|
-
task :prepare => ['git:verify_clean', :update_version, :tag]
|
176
|
+
task :prepare => ['git:verify_clean', :update_version, :tag, :push_tags]
|
168
177
|
|
169
178
|
desc "release to rubyforge for old skool folks"
|
170
179
|
task :rubyforge => [:prepare, 'rubyforge:release']
|
data/VERSION.yml
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sproutcore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1026
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sprout Systems, Inc. Apple Inc. and contributors
|
@@ -1556,7 +1556,7 @@ files:
|
|
1556
1556
|
- vendor/jsdoc/test/variable_redefine.js
|
1557
1557
|
- vendor/yui-compressor/yuicompressor-2.4.2.jar
|
1558
1558
|
has_rdoc: true
|
1559
|
-
homepage: http://www.sproutcore.com
|
1559
|
+
homepage: http://www.sproutcore.com
|
1560
1560
|
licenses: []
|
1561
1561
|
|
1562
1562
|
post_install_message:
|