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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: edca79caa98a0fb2cda2c2e583f5a9145685b41f2fad214a5cee30371b2d4279
4
- data.tar.gz: 770a48fe09d1abba43429eec39707ba25b219fc9f79d08f143faec9044635b81
3
+ metadata.gz: 69fad2bdd9eb1c16052eaa8e7d94935721b8b40d50c9d25760354d4f3875cb8d
4
+ data.tar.gz: 642182b87bed0f569d47f93a6c74002e9c1610508cd5cceabc8be32fe5314f2a
5
5
  SHA512:
6
- metadata.gz: fb3ed88aa349b8804cf814578b045a6ecd1c1eb9234ef75059f88d019045a57fdc9754574fc5552bb90ca709ac6859f377aae61bfe0df008d399658d488da788
7
- data.tar.gz: 4e567956e7e54ce9c9610d1a1a3e1f433878811d403baba9c566d74fb7bfad5bbf9a16f841d0d023ae9882408a182ef39cc6dbb66bebf294fff61739585f8a53
6
+ metadata.gz: 07473330bf865ca8b1531e3994ea79ebdcdc3c311320776362c1c3baa52e8ae2bcd2b201f8d337e5e274fd1370a3873e32ba2dac37081ee3a980eecf27eb4cda
7
+ data.tar.gz: c903e30b4311df2f5c27b4a4d21517572ded8ecc648fbfd9c70555e6b6c81c1445e1ee346cd91651e12a94d8b3475af3e8aaa0ddf016e7835a9e592fa2ed3f32
@@ -0,0 +1,7 @@
1
+ # Overview
2
+
3
+ Please replace this line with full information about your idea or problem. If it's a bug share as much as possible to reproduce it
4
+
5
+ ---
6
+
7
+ Please preserve this line to notify @roll (maintainer of this repository)
@@ -0,0 +1,7 @@
1
+ # Overview
2
+
3
+ Please replace this line with full information about your pull request. Make sure that tests pass before publishing it
4
+
5
+ ---
6
+
7
+ Please preserve this line to notify @roll (maintainer of this repository)
@@ -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
@@ -1,5 +1,5 @@
1
- ---
2
- language: ruby
1
+ language:
2
+ ruby
3
3
 
4
4
  rvm:
5
5
  - 2.3.3
@@ -0,0 +1 @@
1
+ roll
@@ -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)
File without changes
@@ -1,3 +1,3 @@
1
1
  module TableSchema
2
- VERSION = "1.0.1".freeze
2
+ VERSION = "1.0.2".freeze
3
3
  end
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.1
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-03-25 00:00:00.000000000 Z
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
- rubygems_version: 3.0.3
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'