docman 0.0.34 → 0.0.35
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/bin/bump-version.sh +4 -2
- data/lib/docman/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ecb5edd77499661efa4d66a50935742a8cfa7481
|
|
4
|
+
data.tar.gz: b7ce9249f42a0df15592556651c3163fda110698
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 935bd4ca30f2313e0687ecb99c264ba7a30d54ba811b5c655940fa4af2046f5fb867c28e62f3a5f64d7d7940fc2c9aa426c9fadfe783096fe605bf7df2ee076b
|
|
7
|
+
data.tar.gz: 0dba467d264b6468e6b6f97ef658934eef17d4ffabd677d85a731daff539acbead1245c217eda406caecb5a311e237ae2bbefd1aaae40d436638ca846ae9a21c
|
data/bin/bump-version.sh
CHANGED
|
@@ -12,7 +12,9 @@
|
|
|
12
12
|
# pull a list of changes from git history, prepend this to
|
|
13
13
|
# a file called CHANGES (under the title of the new version
|
|
14
14
|
# number) and create a GIT tag.
|
|
15
|
-
|
|
15
|
+
|
|
16
|
+
git checkout master
|
|
17
|
+
git pull origin master
|
|
16
18
|
|
|
17
19
|
if [ -f VERSION ]; then
|
|
18
20
|
BASE_STRING=`cat VERSION`
|
|
@@ -81,7 +83,7 @@ if [ -n "$1" ]; then
|
|
|
81
83
|
fi
|
|
82
84
|
echo "type: tag" > info.yaml
|
|
83
85
|
echo "version: $TAG" >> info.yaml
|
|
84
|
-
git add
|
|
86
|
+
git add info.yaml
|
|
85
87
|
if [ -n "$2" ] && [ "$2" == "skip" ]; then
|
|
86
88
|
git commit -m "[skip] Changed tag to: $TAG" & git push -u origin ${BRANCH}
|
|
87
89
|
else
|
data/lib/docman/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: docman
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.35
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexander Tolstikov
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-09-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|