sekka 1.5.5 → 1.5.6
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/Rakefile +5 -1
- data/VERSION.yml +1 -1
- data/emacs/popup.el +766 -417
- data/emacs/sekka.el +36 -12
- data/lib/sekka/sekkaversion.rb +1 -1
- data/lib/sekkaserver.rb +67 -57
- metadata +2 -4
- data/emacs/http-cookies.el +0 -416
- data/emacs/http-get.el +0 -448
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bebf2d285ac73dd1a847456ec1f912b3aa0787df
|
|
4
|
+
data.tar.gz: 01c6386aacbe19cc50ccecc42641b71a38268930
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d21b8a6ae87724f323e88958ddb5f032f76cfaf66d93b9077c98eac4ef44d9e1d143c1f83d938b834caebecfffc792a0889ef0af5361f05e85bb2d7b3ea11f53
|
|
7
|
+
data.tar.gz: db12de565ae538b2dcb8705cf48d1bb6b969fd4723384c6f28c53ca1e09a1ed823cc3e5a9636fca8e24c96ebc39add336a7abf5c7d61673445ffc3067809258a
|
data/Rakefile
CHANGED
|
@@ -94,7 +94,11 @@ task :compile do
|
|
|
94
94
|
[ lines,
|
|
95
95
|
lines.map {|line|
|
|
96
96
|
if line.match( /;;SEKKA-VERSION/ )
|
|
97
|
-
|
|
97
|
+
if line.match( /Version:/ )
|
|
98
|
+
sprintf( ';; Version: %s ;;SEKKA-VERSION', vh.to_s ) + "\n"
|
|
99
|
+
else
|
|
100
|
+
sprintf( ' "%s" ;;SEKKA-VERSION', vh.to_s ) + "\n"
|
|
101
|
+
end
|
|
98
102
|
else
|
|
99
103
|
line
|
|
100
104
|
end
|
data/VERSION.yml
CHANGED