polites 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c10112a402b05b305c8b0f0f35c5e12445fa6bfaf2b08c265b6afe9bf7872aab
4
- data.tar.gz: 7657d9cbcfe412ad9f87ee28db254fc1f2597efc7eb778261cfff5d81fe9ee35
3
+ metadata.gz: 77e4ea7f1cdb7f6e662789c3c9a827d7cf1102794bbec1f487a327f6cafaff8c
4
+ data.tar.gz: 4ee0bd4606a2927e6a26face3b4e2decff2321b2ee6f1c7042bc4dea9f97bfc6
5
5
  SHA512:
6
- metadata.gz: d58f9da84de182b7aacf89d7900e211c92684725374ab7c132a6cefdc05d40f51726bb0e671e14374e84306b2621fb8fd44debf24c3f2e4bd272ffb84e165293
7
- data.tar.gz: '064096d81364faa6b32a756e31875cb728a067628cdfef9a7c0c4c5525d3b918ffd11c23d5cbe1c5a5afb58e6956216a1732ddb4f412b44540040dddd51b1662'
6
+ metadata.gz: 4fb4491992bab118a0eb70282da7dda3835fce131f8d68b47a945afda47ff71411c0047ad1ce21810be18730082204daf328f07448a0da536cefe7de230fe219
7
+ data.tar.gz: a2e1c92b1fdcea5d02203e001564acc528605ca86b6813619522a0d01528af1552e13c7a702f7e677aa45a9559b5c9142fc61a58b51cdbcd59d698c94abd305e
@@ -0,0 +1,10 @@
1
+ # Changelog
2
+
3
+ ## 0.2.0 - 2020-11-30
4
+
5
+ - Fixed requirement of polites files in polites-nanoc
6
+ - Updated gem descriptions
7
+
8
+ ## 0.1.0 - 2020-11-30
9
+
10
+ - Initial release
@@ -1,12 +1,12 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- polites (0.1.0)
4
+ polites (0.2.0)
5
5
  nokogiri
6
6
  rubyzip
7
- polites-nanoc (0.1.0)
7
+ polites-nanoc (0.2.0)
8
8
  nanoc (~> 4)
9
- polites (~> 0.1.0)
9
+ polites (~> 0.2.0)
10
10
 
11
11
  GEM
12
12
  remote: https://rubygems.org/
@@ -64,7 +64,7 @@ GEM
64
64
  nanoc-core (~> 4.11, >= 4.11.15)
65
65
  nokogiri (1.10.10)
66
66
  mini_portile2 (~> 2.4.0)
67
- parallel (1.20.0)
67
+ parallel (1.20.1)
68
68
  parser (2.7.2.0)
69
69
  ast (~> 2.4.1)
70
70
  pastel (0.8.0)
@@ -73,7 +73,7 @@ GEM
73
73
  rainbow (3.0.0)
74
74
  rake (12.3.3)
75
75
  ref (2.0.0)
76
- regexp_parser (1.8.2)
76
+ regexp_parser (2.0.0)
77
77
  rexml (3.2.4)
78
78
  rspec (3.10.0)
79
79
  rspec-core (~> 3.10.0)
@@ -88,7 +88,7 @@ GEM
88
88
  diff-lcs (>= 1.2.0, < 2.0)
89
89
  rspec-support (~> 3.10.0)
90
90
  rspec-support (3.10.0)
91
- rubocop (1.3.1)
91
+ rubocop (1.4.2)
92
92
  parallel (~> 1.10)
93
93
  parser (>= 2.7.1.5)
94
94
  rainbow (>= 2.2.2, < 4.0)
@@ -97,7 +97,7 @@ GEM
97
97
  rubocop-ast (>= 1.1.1)
98
98
  ruby-progressbar (~> 1.7)
99
99
  unicode-display_width (>= 1.4.0, < 2.0)
100
- rubocop-ast (1.1.1)
100
+ rubocop-ast (1.2.0)
101
101
  parser (>= 2.7.1.5)
102
102
  ruby-progressbar (1.10.1)
103
103
  rubyzip (2.3.0)
@@ -110,18 +110,18 @@ GEM
110
110
  tty-which (0.4.2)
111
111
  unicode-display_width (1.7.0)
112
112
  yard (0.9.25)
113
- zeitwerk (2.4.1)
113
+ zeitwerk (2.4.2)
114
114
 
115
115
  PLATFORMS
116
116
  ruby
117
117
 
118
118
  DEPENDENCIES
119
119
  kramdown
120
+ polites!
121
+ polites-nanoc!
120
122
  rake (~> 12.0)
121
123
  rspec (~> 3.0)
122
124
  rubocop
123
- polites!
124
- polites-nanoc!
125
125
  yard
126
126
 
127
127
  BUNDLED WITH
@@ -1,10 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'pathname'
4
- require_relative '../settings'
5
- require_relative '../parser'
6
- require_relative '../file'
7
- require_relative '../html_formatter'
4
+ require 'polites/settings'
5
+ require 'polites/parser'
6
+ require 'polites/file'
7
+ require 'polites/html_formatter'
8
8
 
9
9
  module Polites
10
10
  module Nanoc
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative '../file'
3
+ require 'polites/file'
4
4
 
5
5
  module Polites
6
6
  module Nanoc
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Polites
4
- VERSION = '0.1.0'
4
+ VERSION = '0.2.0'
5
5
  end
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ['Arjan van der Gaag']
9
9
  spec.email = ['arjan@arjanvandergaag.nl']
10
10
 
11
- spec.summary = 'Integrate the Ulysess gem with Nanoc.'
12
- spec.description = 'Use Polites\' .ulyz files as a data source in static sites generated with Nanoc.'
11
+ spec.summary = 'Integrate the Polites gem with Nanoc.'
12
+ spec.description = 'Use Ulysses\' .ulyz files as a data source in static sites generated with Nanoc.'
13
13
  spec.homepage = 'https://github.com/avdgaag/polites'
14
14
  spec.license = 'MIT'
15
15
  spec.required_ruby_version = Gem::Requirement.new('>= 2.4.0')
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ['Arjan van der Gaag']
9
9
  spec.email = ['arjan@arjanvandergaag.nl']
10
10
 
11
- spec.summary = 'Work with Polites files from Ruby'
12
- spec.description = 'Polites is a gem that can read Polites\' .ulyz files and transform their contents to HTML.'
11
+ spec.summary = 'Work with Ulysses files from Ruby'
12
+ spec.description = 'Polites is a gem that can read Ulysses\' .ulyz files and transform their contents to HTML.'
13
13
  spec.homepage = 'https://github.com/avdgaag/polites'
14
14
  spec.license = 'MIT'
15
15
  spec.required_ruby_version = Gem::Requirement.new('>= 2.4.0')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: polites
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arjan van der Gaag
@@ -38,7 +38,7 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
- description: Polites is a gem that can read Polites' .ulyz files and transform their
41
+ description: Polites is a gem that can read Ulysses' .ulyz files and transform their
42
42
  contents to HTML.
43
43
  email:
44
44
  - arjan@arjanvandergaag.nl
@@ -53,6 +53,7 @@ files:
53
53
  - ".tool-versions"
54
54
  - ".travis.yml"
55
55
  - ".yardopts"
56
+ - CHANGELOG.md
56
57
  - CODE_OF_CONDUCT.md
57
58
  - Gemfile
58
59
  - Gemfile.lock
@@ -149,5 +150,5 @@ requirements: []
149
150
  rubygems_version: 3.1.4
150
151
  signing_key:
151
152
  specification_version: 4
152
- summary: Work with Polites files from Ruby
153
+ summary: Work with Ulysses files from Ruby
153
154
  test_files: []