rblade 0.3.0 → 0.5.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,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rblade
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simon J
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-26 00:00:00.000000000 Z
11
+ date: 2024-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -66,7 +66,8 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '7.0'
69
- description: A port of the Laravel blade templating engine to ruby
69
+ description: RBlade is a simple, yet powerful templating engine for Ruby on Rails,
70
+ inspired by Laravel Blade.
70
71
  email: 2857218+mwnciau@users.noreply.github.com
71
72
  executables: []
72
73
  extensions: []
@@ -76,8 +77,10 @@ files:
76
77
  - ".standard.yml"
77
78
  - CHANGELOG.md
78
79
  - Gemfile
80
+ - LICENSE.md
79
81
  - README.md
80
82
  - Rakefile
83
+ - TODO.md
81
84
  - do
82
85
  - docker-compose.yml
83
86
  - lib/rblade.rb
@@ -87,9 +90,12 @@ files:
87
90
  - lib/rblade/compiler/compiles_echos.rb
88
91
  - lib/rblade/compiler/compiles_ruby.rb
89
92
  - lib/rblade/compiler/compiles_statements.rb
93
+ - lib/rblade/compiler/compiles_verbatim.rb
90
94
  - lib/rblade/compiler/statements/compiles_conditionals.rb
95
+ - lib/rblade/compiler/statements/compiles_html_attributes.rb
91
96
  - lib/rblade/compiler/statements/compiles_inline_ruby.rb
92
97
  - lib/rblade/compiler/statements/compiles_loops.rb
98
+ - lib/rblade/compiler/statements/compiles_once.rb
93
99
  - lib/rblade/compiler/statements/compiles_props.rb
94
100
  - lib/rblade/compiler/statements/compiles_stacks.rb
95
101
  - lib/rblade/compiler/tokenizes_components.rb
@@ -97,6 +103,8 @@ files:
97
103
  - lib/rblade/component_store.rb
98
104
  - lib/rblade/helpers/attributes_manager.rb
99
105
  - lib/rblade/helpers/class_manager.rb
106
+ - lib/rblade/helpers/html_string.rb
107
+ - lib/rblade/helpers/slot_manager.rb
100
108
  - lib/rblade/helpers/stack_manager.rb
101
109
  - lib/rblade/helpers/style_manager.rb
102
110
  - lib/rblade/helpers/tokenizer.rb
@@ -125,5 +133,5 @@ requirements: []
125
133
  rubygems_version: 3.5.11
126
134
  signing_key:
127
135
  specification_version: 4
128
- summary: Blade templates for ruby
136
+ summary: A component-first templating engine for Rails
129
137
  test_files: []