tilt 2.6.0 → 2.7.0

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.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tilt
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.0
4
+ version: 2.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Tomayko
@@ -9,7 +9,7 @@ authors:
9
9
  - Jeremy Evans
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2025-01-13 00:00:00.000000000 Z
12
+ date: 1980-01-02 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Generic interface to multiple Ruby template engines
15
15
  email: code@jeremyevans.net
@@ -31,7 +31,6 @@ files:
31
31
  - lib/tilt/cli.rb
32
32
  - lib/tilt/coffee.rb
33
33
  - lib/tilt/commonmarker.rb
34
- - lib/tilt/creole.rb
35
34
  - lib/tilt/csv.rb
36
35
  - lib/tilt/erb.rb
37
36
  - lib/tilt/erubi.rb
@@ -67,6 +66,7 @@ metadata:
67
66
  changelog_uri: https://github.com/jeremyevans/tilt/blob/master/CHANGELOG.md
68
67
  mailing_list_uri: https://github.com/jeremyevans/tilt/discussions
69
68
  source_code_uri: https://github.com/jeremyevans/tilt
69
+ documentation_uri: https://tilt.jeremyevans.net
70
70
  rdoc_options:
71
71
  - "--line-numbers"
72
72
  - "--inline-source"
@@ -87,7 +87,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
87
  - !ruby/object:Gem::Version
88
88
  version: '0'
89
89
  requirements: []
90
- rubygems_version: 3.6.2
90
+ rubygems_version: 4.0.3
91
91
  specification_version: 4
92
92
  summary: Generic interface to multiple Ruby template engines
93
93
  test_files: []
data/lib/tilt/creole.rb DELETED
@@ -1,16 +0,0 @@
1
- # frozen_string_literal: true
2
- require_relative 'template'
3
- require 'creole'
4
-
5
- warn 'tilt/creole is deprecated, as creole requires modifying string literals', uplevel: 1
6
-
7
- allowed_opts = [:allowed_schemes, :extensions, :no_escape].freeze
8
-
9
- # Creole implementation. See: http://www.wikicreole.org/
10
- Tilt::CreoleTemplate = Tilt::StaticTemplate.subclass do
11
- opts = {}
12
- allowed_opts.each do |k|
13
- opts[k] = @options[k] if @options[k]
14
- end
15
- Creole::Parser.new(@data, opts).to_html
16
- end