str_helpers_dave 1.1.1 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2419ab6c789d5403976e0d02105d86d8a7165ef3e6aa34118ea68dde5f7c7010
4
- data.tar.gz: 155b34a0ad2f0351ced610094b959921652b152c9ceeafb4fd9416aae1c461e1
3
+ metadata.gz: 236c336a3b5fe5340f4a8707b63ffdc995abc3746ecad55aa5b548511a2c0223
4
+ data.tar.gz: 7e7cacc6498def7cc21425cd3244d649d648a60561fbc938f2d015f186beabc2
5
5
  SHA512:
6
- metadata.gz: 8b5db02286008537bb5fc88b618f15b552fef68aecc1cb3830c326e31f6cd9c024e5dcf8c82520300ed642bf1def0b3ee2fe7cd583aaf17d69f1a789a6f1abb8
7
- data.tar.gz: 3b2f3a6c9d2304537c60020fee9952b321dea25eb97cce022102e33f0660371672bce6a2608596faa5d8504ee7f5b7d9a65e418d76c079e169291d5fe0bc1585
6
+ metadata.gz: eaee7a1b2510b2bd015699056bd1365195401820de11fc0a5e2487328291984444eda1fc77f3418d3299d4bdf409ffdbfde6365ff04041780837b5929cd86295
7
+ data.tar.gz: c5c5fd8a247fe88f28af7ff7a41551b93413cb98e584203b72e24ee5284764d7edb4a4bb4496d4f00022cc9bfb9f2289f8dfd56e8492bf89ff36a7f32387c766
data/README.md CHANGED
@@ -1,9 +1,5 @@
1
1
  # StrHelpersDave
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/str_helpers_dave`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
6
-
7
3
  ## Installation
8
4
 
9
5
  Add this line to your application's Gemfile:
@@ -21,14 +17,21 @@ Or install it yourself as:
21
17
  $ gem install str_helpers_dave
22
18
 
23
19
  ## Usage
20
+ ```ruby
21
+ StrHelpersDave.reversify('Hello')
22
+ # => 'olleH'
23
+ StrHelpersDave.casify('hello')
24
+ # => 'HEllO'
25
+ StrHelpersDave.spacify('hello', 1)
26
+ # => 'h e l l o'
24
27
 
25
- TODO: Write usage instructions here
26
-
27
- ## Development
28
+ StrHelpersDave::Greeting.greet_user('Dave')
29
+ # => 'Hello Dave!'
28
30
 
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
31
+ StrHelpersDave::Greeting.greet_user('Dave', 'Goodbye')
32
+ # => 'Goodbye Dave!
33
+ ```
30
34
 
31
- 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).
32
35
 
33
36
  ## Contributing
34
37
 
@@ -1,3 +1,3 @@
1
1
  module StrHelpersDave
2
- VERSION = "1.1.1"
2
+ VERSION = "1.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: str_helpers_dave
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Jungst