handlebars-helpers 0.0.73 → 0.0.74
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/README.md +1 -1
- data/STORIES.md +1 -1
- data/USAGE.md +1 -1
- data/handlebars-helpers.gemspec +9 -4
- data/lib/handlebars/helpers/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f70bb20a653e2c9a3e01812c77aae7cdf0ee5709a359bbb4d3243ebcc440d9a4
|
|
4
|
+
data.tar.gz: b20c4836771738ea1cd86e0cdaf91af8be97ddf99e87f34b001a5bf9f78d7d2e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 799126c7777513d5390f31a6d9a214b317e7763caf48f784ea395e9c30a5a2eb18a854eab68626d24352c464f293d2b21415462aca6e969e46af82fee94c0720
|
|
7
|
+
data.tar.gz: eabc9896fc354ad324b9c7b0451ebf5bb6146685a6d544b49fee63bd286f83621ecacb737c299f2af1f465153d0a717e8c90b90d3b57c207713399b737c2419f
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Handlebars Helpers
|
|
2
2
|
|
|
3
|
-
> Handlebars Helpers is a library that provides <b
|
|
3
|
+
> Handlebars Helpers is a library that provides <b>42</b> handlebars helpers across <b>5</b> categories, it was built to complement [cowboyd/handlebars.rb](https://github.com/cowboyd/handlebars.rb) with Ruby helpers commonly found in the Javascript community
|
|
4
4
|
|
|
5
5
|
This GEM is inspired by the Javascript Library [handlebars-helpers](https://github.com/helpers/handlebars-helpers).
|
|
6
6
|
|
data/STORIES.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Handlebars Helpers
|
|
2
2
|
|
|
3
|
-
> Handlebars Helpers is a library that provides <b>
|
|
3
|
+
> Handlebars Helpers is a library that provides <b>42</b> handlebars helpers across <b>5</b> categories, it was built to complement [cowboyd/handlebars.rb](https://github.com/cowboyd/handlebars.rb) with Ruby helpers commonly found in the Javascript community
|
|
4
4
|
|
|
5
5
|
As a Ruby Developer, I want to use HandlebarsJS with useful helpers, so that I have a rich templating experience
|
|
6
6
|
|
data/USAGE.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Handlebars Helpers
|
|
2
2
|
|
|
3
|
-
> Handlebars Helpers is a library that provides <b>
|
|
3
|
+
> Handlebars Helpers is a library that provides <b>42</b> handlebars helpers across <b>5</b> categories, it was built to complement [cowboyd/handlebars.rb](https://github.com/cowboyd/handlebars.rb) with Ruby helpers commonly found in the Javascript community
|
|
4
4
|
|
|
5
5
|
As a Ruby Developer, I want to use HandlebarsJS with useful helpers, so that I have a rich templating experience
|
|
6
6
|
|
data/handlebars-helpers.gemspec
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
require_relative 'lib/handlebars/helpers/version'
|
|
4
|
+
require_relative 'lib/handlebars/helpers/statistics'
|
|
4
5
|
|
|
5
6
|
Gem::Specification.new do |spec|
|
|
7
|
+
description = "Handlebars Helpers provides (#{Handlebars::Helpers::HANDLER_COUNT}) handlebars helpers across (#{Handlebars::Helpers::CATEGORY_COUNT}) categories"
|
|
8
|
+
|
|
6
9
|
spec.required_ruby_version = '>= 2.5'
|
|
7
10
|
spec.name = 'handlebars-helpers'
|
|
8
11
|
spec.version = Handlebars::Helpers::VERSION
|
|
9
12
|
spec.authors = ['David Cruwys']
|
|
10
13
|
spec.email = ['david@ideasmen.com.au']
|
|
11
14
|
|
|
12
|
-
spec.summary =
|
|
13
|
-
spec.description =
|
|
14
|
-
Handlebars Helpers provides (Nx) handlebars helpers across (Ny) categories
|
|
15
|
-
TEXT
|
|
15
|
+
spec.summary = description
|
|
16
|
+
spec.description = description
|
|
16
17
|
spec.homepage = 'http://appydave.com/gems/handlebars-helpers'
|
|
17
18
|
spec.license = 'MIT'
|
|
18
19
|
|
|
@@ -34,6 +35,10 @@ Gem::Specification.new do |spec|
|
|
|
34
35
|
f.match(%r{^(test|spec|features)/})
|
|
35
36
|
end
|
|
36
37
|
end
|
|
38
|
+
|
|
39
|
+
spec.files.each do |file|
|
|
40
|
+
puts file
|
|
41
|
+
end
|
|
37
42
|
spec.bindir = 'exe'
|
|
38
43
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
39
44
|
spec.require_paths = ['lib']
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: handlebars-helpers
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.74
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Cruwys
|
|
@@ -38,8 +38,7 @@ dependencies:
|
|
|
38
38
|
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '0'
|
|
41
|
-
description:
|
|
42
|
-
categories\n"
|
|
41
|
+
description: Handlebars Helpers provides (42) handlebars helpers across (5) categories
|
|
43
42
|
email:
|
|
44
43
|
- david@ideasmen.com.au
|
|
45
44
|
executables: []
|
|
@@ -157,5 +156,5 @@ requirements: []
|
|
|
157
156
|
rubygems_version: 3.2.7
|
|
158
157
|
signing_key:
|
|
159
158
|
specification_version: 4
|
|
160
|
-
summary: Handlebars Helpers provides (
|
|
159
|
+
summary: Handlebars Helpers provides (42) handlebars helpers across (5) categories
|
|
161
160
|
test_files: []
|