tablerize 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/Gemfile +7 -0
- data/README.md +6 -9
- data/lib/tablerize/version.rb +1 -1
- data/tablerize.gemspec +1 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 177bc719888f6025eb0555f44d52923ecdd9aac8
|
|
4
|
+
data.tar.gz: 0dd3eccaa45b1cba5843a81e87c42049d7aa7f66
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0ae09df3462bd1fc2c65466a9843a8acf3304fc68fb4aebaf23105b8f4e27d7a39d7b718f0ba2e298829f2242c00e4ff26f9befa24bb4e49ad5c9d700b598a8b
|
|
7
|
+
data.tar.gz: 4691ddbf0618998a2ba1b979ffefcd8dd123e6d9eebaedf493362dbc406741b334191efab9dacf8aae155c58b6a2e09c16fbf2f1e91c147ec0dc9e96673a441c
|
data/Gemfile
ADDED
data/README.md
CHANGED
|
@@ -1,21 +1,18 @@
|
|
|
1
1
|
Tablerize
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
[](https://travis-ci.org/IFTTT/tablerize)
|
|
5
|
+
|
|
6
|
+
```shell
|
|
7
|
+
gem install tablerize
|
|
8
|
+
```
|
|
9
|
+
|
|
4
10
|
Tablerize is a format for writing tables using YAML/JSON-compatible data
|
|
5
11
|
structures, and Ruby code to convert it to HTML.
|
|
6
12
|
|
|
7
13
|
|
|
8
14
|
## Usage
|
|
9
15
|
|
|
10
|
-
To install
|
|
11
|
-
|
|
12
|
-
```shell
|
|
13
|
-
cd tablerize
|
|
14
|
-
make install
|
|
15
|
-
# or (soon)
|
|
16
|
-
gem install tablerize
|
|
17
|
-
```
|
|
18
|
-
|
|
19
16
|
You can use it in Ruby...
|
|
20
17
|
|
|
21
18
|
```ruby
|
data/lib/tablerize/version.rb
CHANGED
data/tablerize.gemspec
CHANGED
|
@@ -15,6 +15,7 @@ Gem::Specification.new do |gem|
|
|
|
15
15
|
gem.email = 'opensource+tablerize@szhu.me'
|
|
16
16
|
gem.license = 'MIT'
|
|
17
17
|
|
|
18
|
+
gem.required_ruby_version = '>= 1.9.3'
|
|
18
19
|
gem.add_dependency 'kramdown', '~> 1.2', '>= 1.2.0'
|
|
19
20
|
gem.executables = ['tablerize']
|
|
20
21
|
gem.files = `git ls-files`.split
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tablerize
|
|
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
|
- Sean Zhu
|
|
@@ -42,6 +42,7 @@ files:
|
|
|
42
42
|
- ".gitignore"
|
|
43
43
|
- ".rspec"
|
|
44
44
|
- ".travis.yml"
|
|
45
|
+
- Gemfile
|
|
45
46
|
- LICENSE
|
|
46
47
|
- Makefile
|
|
47
48
|
- README.md
|
|
@@ -68,7 +69,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
68
69
|
requirements:
|
|
69
70
|
- - ">="
|
|
70
71
|
- !ruby/object:Gem::Version
|
|
71
|
-
version:
|
|
72
|
+
version: 1.9.3
|
|
72
73
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
74
|
requirements:
|
|
74
75
|
- - ">="
|