zotplus-rakehelper 0.0.57 → 0.0.58
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/zotplus-rakehelper/version.rb +1 -1
- data/lib/zotplus-rakehelper.rb +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b926f8aaa1e181774bf421cc83f179cd8ac94ce2
|
|
4
|
+
data.tar.gz: 407ffcb561d32390315e81611261e62dab581432
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5df43d7504eb2e1b40158502b6ca72b990c13b45a17d809b494ca4dd66d134e7ffe40f7bf952ac502db7dffa227e61e6ba48b62a080e00f33ffec16d4a910e06
|
|
7
|
+
data.tar.gz: 34feb0b5643fa7350e01882658800ec25f8c8fa54f7a7e9b763b70e65add84af52867c0377d577b228d882484cc8f628863f83512ebd7e437b68089ae68e1a51
|
data/Gemfile.lock
CHANGED
data/lib/zotplus-rakehelper.rb
CHANGED
|
@@ -73,12 +73,13 @@ task :bump, :what do |t, args|
|
|
|
73
73
|
puts `git add install.rdf`
|
|
74
74
|
puts `rake`
|
|
75
75
|
puts `rake README.md`
|
|
76
|
+
system "git commit -am #{RELEASE}"
|
|
77
|
+
system "git tag #{RELEASE}"
|
|
76
78
|
puts "Release set to #{release}. Please publish."
|
|
77
79
|
end
|
|
78
80
|
|
|
79
81
|
task :publish => [XPI, UPDATE_RDF] do
|
|
80
82
|
system "git commit -am #{RELEASE}"
|
|
81
|
-
system "git tag #{RELEASE}"
|
|
82
83
|
system "git push"
|
|
83
84
|
system "cd www; rake publish"
|
|
84
85
|
end
|