thymeleaf 0.1.0 → 0.1.1
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/lib/thymeleaf.rb +11 -0
- data/lib/thymeleaf/version.rb +1 -1
- 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: 882bfe578bdc2a3a6787896fa4490e313e9a77d6
|
4
|
+
data.tar.gz: bf47ea45ceb2d05ec9274922ab9f7da67a39e2d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 61293d2b62d2d806b9ec2225bf5f06eccefbdacb409383bfbf15d9c786dd3dacf311a408fc7890d6e6dc31654f1c751f2cdfc0b9884b1ada9f9d24a9835045b1
|
7
|
+
data.tar.gz: 8a28a2c4e6b329b4a7271010b2a900b822673b883c8ed6a2b3d5e3218f939f6b7297a4cdbff0e1995bf83e202c825c75d4f8758e449f02981ffef512789b494c
|
data/lib/thymeleaf.rb
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
|
2
|
+
require_relative 'thymeleaf/configuration'
|
3
|
+
require_relative 'thymeleaf/parser'
|
4
|
+
require_relative 'thymeleaf/processor'
|
5
|
+
require_relative 'thymeleaf/template_engine'
|
6
|
+
require_relative 'thymeleaf/template'
|
7
|
+
|
8
|
+
module Thymeleaf
|
9
|
+
end
|
10
|
+
|
11
|
+
Thymeleaf.configure
|
data/lib/thymeleaf/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thymeleaf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Barral Precedo
|
@@ -131,6 +131,7 @@ executables: []
|
|
131
131
|
extensions: []
|
132
132
|
extra_rdoc_files: []
|
133
133
|
files:
|
134
|
+
- lib/thymeleaf.rb
|
134
135
|
- lib/thymeleaf/configuration.rb
|
135
136
|
- lib/thymeleaf/context/context_holder.rb
|
136
137
|
- lib/thymeleaf/context/context_struct.rb
|
@@ -185,7 +186,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
185
186
|
version: '0'
|
186
187
|
requirements: []
|
187
188
|
rubyforge_project:
|
188
|
-
rubygems_version: 2.
|
189
|
+
rubygems_version: 2.5.1
|
189
190
|
signing_key:
|
190
191
|
specification_version: 4
|
191
192
|
summary: Thymeleaf for Ruby
|