handlebars-helpers 0.0.70 → 0.0.71
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 +8 -3
- data/handlebars-helpers.gemspec +1 -2
- data/lib/handlebars/helpers/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 850126b36a61132bcd5cdf6fb48145c15be4c02af696cb2fe5f24e44d65f4549
|
4
|
+
data.tar.gz: 131a12e91ce05cf333df327edfca64827d9bc869be7c7b7acf625f72b0773dc1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46324180caaeb0b651bdfa2cb02b1a36939fce1cb81e40ad882f84e76df9c88c3061586624fb15e7a16b66d67c9cf1d65a3f8d580beeaefbfa8b1016ca9e6e2f
|
7
|
+
data.tar.gz: c49ff649824921f0b5908d434d6c2b3eaf159b6167edd65265e6464cd6448848cbdb49ed4c70cda194f501d96b691a9c270fc79d0fb7a826a319dbec6c8025e3
|
data/README.md
CHANGED
@@ -63,15 +63,20 @@ You can also run `bin/console` for an interactive prompt that will allow you to
|
|
63
63
|
```bash
|
64
64
|
bin/console
|
65
65
|
|
66
|
-
|
66
|
+
Handlebars::Helpers::Template.render('{{camel .}}', 'david was here')
|
67
67
|
# => "DavidWasHere"
|
68
|
-
|
68
|
+
Handlebars::Helpers::Template.render('{{dasherize .}}', 'david was here')
|
69
69
|
# => "david-was-here"
|
70
70
|
```
|
71
71
|
|
72
72
|
`handlebars-helpers` is setup with Guard, run `guard`, this will watch development file changes and run tests automatically, if successful, it will then run rubocop for style quality.
|
73
73
|
|
74
|
-
To
|
74
|
+
To release a new version, update the version number in `version.rb`, build the gem and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
75
|
+
|
76
|
+
```bash
|
77
|
+
gem build
|
78
|
+
gem push rspec-usecases-?.?.??.gem
|
79
|
+
```
|
75
80
|
|
76
81
|
## Contributing
|
77
82
|
|
data/handlebars-helpers.gemspec
CHANGED
@@ -36,13 +36,12 @@ Gem::Specification.new do |spec|
|
|
36
36
|
spec.bindir = 'exe'
|
37
37
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
38
38
|
spec.require_paths = ['lib']
|
39
|
-
# spec.extensions = ['ext/handlebars_helpers/extconf.rb']
|
40
39
|
|
41
40
|
spec.extra_rdoc_files = ['README.md', 'STORIES.md', 'USAGE.md']
|
42
41
|
spec.rdoc_options += [
|
43
42
|
'--title', 'handlebars-helpers by appydave.com',
|
44
43
|
'--main', 'README.md',
|
45
|
-
'--files STORIES.MD USAGE.MD'
|
44
|
+
'--files', 'STORIES.MD USAGE.MD'
|
46
45
|
]
|
47
46
|
|
48
47
|
# spec.add_dependency 'tty-box', '~> 0.5.0'
|
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.71
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Cruwys
|
@@ -138,7 +138,8 @@ rdoc_options:
|
|
138
138
|
- handlebars-helpers by appydave.com
|
139
139
|
- "--main"
|
140
140
|
- README.md
|
141
|
-
- "--files
|
141
|
+
- "--files"
|
142
|
+
- STORIES.MD USAGE.MD
|
142
143
|
require_paths:
|
143
144
|
- lib
|
144
145
|
required_ruby_version: !ruby/object:Gem::Requirement
|