tableschema 1.0.1 → 1.0.2
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/.github/issue_template.md +7 -0
- data/.github/pull_request_template.md +7 -0
- data/.github/stale.yml +23 -0
- data/.travis.yml +2 -2
- data/MAINTAINER.md +1 -0
- data/Makefile +25 -0
- data/bin/console +0 -0
- data/lib/tableschema/version.rb +1 -1
- metadata +9 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 69fad2bdd9eb1c16052eaa8e7d94935721b8b40d50c9d25760354d4f3875cb8d
|
|
4
|
+
data.tar.gz: 642182b87bed0f569d47f93a6c74002e9c1610508cd5cceabc8be32fe5314f2a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 07473330bf865ca8b1531e3994ea79ebdcdc3c311320776362c1c3baa52e8ae2bcd2b201f8d337e5e274fd1370a3873e32ba2dac37081ee3a980eecf27eb4cda
|
|
7
|
+
data.tar.gz: c903e30b4311df2f5c27b4a4d21517572ded8ecc648fbfd9c70555e6b6c81c1445e1ee346cd91651e12a94d8b3475af3e8aaa0ddf016e7835a9e592fa2ed3f32
|
data/.github/stale.yml
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Number of days of inactivity before an issue becomes stale
|
|
2
|
+
daysUntilStale: 90
|
|
3
|
+
|
|
4
|
+
# Number of days of inactivity before a stale issue is closed
|
|
5
|
+
daysUntilClose: 30
|
|
6
|
+
|
|
7
|
+
# Issues with these labels will never be considered stale
|
|
8
|
+
exemptLabels:
|
|
9
|
+
- feature
|
|
10
|
+
- enhancement
|
|
11
|
+
- bug
|
|
12
|
+
|
|
13
|
+
# Label to use when marking an issue as stale
|
|
14
|
+
staleLabel: wontfix
|
|
15
|
+
|
|
16
|
+
# Comment to post when marking an issue as stale. Set to `false` to disable
|
|
17
|
+
markComment: >
|
|
18
|
+
This issue has been automatically marked as stale because it has not had
|
|
19
|
+
recent activity. It will be closed if no further activity occurs. Thank you
|
|
20
|
+
for your contributions.
|
|
21
|
+
|
|
22
|
+
# Comment to post when closing a stale issue. Set to `false` to disable
|
|
23
|
+
closeComment: false
|
data/.travis.yml
CHANGED
data/MAINTAINER.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
roll
|
data/Makefile
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
.PHONY: all list release templates version
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
VERSION := $(shell cat lib/tableschema/version.rb | awk -F\" '{ print $$2 }' | xargs)
|
|
5
|
+
MAINTAINER := $(shell head -n 1 MAINTAINER.md)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
all: list
|
|
9
|
+
|
|
10
|
+
list:
|
|
11
|
+
@grep '^\.PHONY' Makefile | cut -d' ' -f2- | tr ' ' '\n'
|
|
12
|
+
|
|
13
|
+
release:
|
|
14
|
+
git checkout master && git pull origin && git fetch -p
|
|
15
|
+
git log --pretty=format:"%C(yellow)%h%Creset %s%Cgreen%d" --reverse -20
|
|
16
|
+
@echo "Releasing v$(VERSION) in 10 seconds. Press <CTRL+C> to abort" && sleep 10
|
|
17
|
+
git commit -a -m 'v$(VERSION)' && git tag -a v$(VERSION) -m 'v$(VERSION)'
|
|
18
|
+
git push --follow-tags
|
|
19
|
+
|
|
20
|
+
templates:
|
|
21
|
+
sed -i -E "s/@(\w*)/@$(MAINTAINER)/" .github/issue_template.md
|
|
22
|
+
sed -i -E "s/@(\w*)/@$(MAINTAINER)/" .github/pull_request_template.md
|
|
23
|
+
|
|
24
|
+
version:
|
|
25
|
+
@echo $(VERSION)
|
data/bin/console
CHANGED
|
File without changes
|
data/lib/tableschema/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tableschema
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Open Knowledge Foundation
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-10-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -171,6 +171,9 @@ executables: []
|
|
|
171
171
|
extensions: []
|
|
172
172
|
extra_rdoc_files: []
|
|
173
173
|
files:
|
|
174
|
+
- ".github/issue_template.md"
|
|
175
|
+
- ".github/pull_request_template.md"
|
|
176
|
+
- ".github/stale.yml"
|
|
174
177
|
- ".gitignore"
|
|
175
178
|
- ".rspec"
|
|
176
179
|
- ".rubocop.yml"
|
|
@@ -179,6 +182,8 @@ files:
|
|
|
179
182
|
- CODE_OF_CONDUCT.md
|
|
180
183
|
- Gemfile
|
|
181
184
|
- LICENSE.txt
|
|
185
|
+
- MAINTAINER.md
|
|
186
|
+
- Makefile
|
|
182
187
|
- README.md
|
|
183
188
|
- Rakefile
|
|
184
189
|
- bin/console
|
|
@@ -240,7 +245,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
240
245
|
- !ruby/object:Gem::Version
|
|
241
246
|
version: '0'
|
|
242
247
|
requirements: []
|
|
243
|
-
|
|
248
|
+
rubyforge_project:
|
|
249
|
+
rubygems_version: 2.7.7
|
|
244
250
|
signing_key:
|
|
245
251
|
specification_version: 4
|
|
246
252
|
summary: A Ruby library for working with Table Schema. Formerly known as 'jsontableschema'
|