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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a34182c470d12ecf98184d74c9827ff4dd55a513b434cf4ba5c7879d79bdf870
4
- data.tar.gz: 7778766cdae462020b6972cbb518a7e9ab16e9c4bc3f2e69f6cab7012ebafef9
3
+ metadata.gz: 850126b36a61132bcd5cdf6fb48145c15be4c02af696cb2fe5f24e44d65f4549
4
+ data.tar.gz: 131a12e91ce05cf333df327edfca64827d9bc869be7c7b7acf625f72b0773dc1
5
5
  SHA512:
6
- metadata.gz: 89e7384b433468acbd725780d0cc7031b66d086f2a27fd7b3ca334869114001dc080a4cfc0b6b83bf780e2649240eababefae39cc0c05db89a3c2bdba0e22284
7
- data.tar.gz: 6ff46fde0b72fd6edacd5a47d9074ca591ddee60efae059beab607ca354fb55f98e7dc6d6100c181f1ecb017134a4b23d47c2ad26fb76e9277874350fdf3f9d1
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
- irb(main):001:0> Handlebars::Helpers::Template.render('{{camel .}}', 'david was here')
66
+ Handlebars::Helpers::Template.render('{{camel .}}', 'david was here')
67
67
  # => "DavidWasHere"
68
- irb(main):001:0> Handlebars::Helpers::Template.render('{{dasherize .}}', 'david was here')
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 install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
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
 
@@ -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'
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Handlebars
4
4
  module Helpers
5
- VERSION = '0.0.70'
5
+ VERSION = '0.0.71'
6
6
  end
7
7
  end
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.70
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 STORIES.MD USAGE.MD"
141
+ - "--files"
142
+ - STORIES.MD USAGE.MD
142
143
  require_paths:
143
144
  - lib
144
145
  required_ruby_version: !ruby/object:Gem::Requirement