camify 1.0.2 → 1.0.3

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: 50b379b23b0fa282eb23cb00e3ecf86c28f587e8ff6c49faeb4c1dc4d14c4971
4
- data.tar.gz: 34d3f1396c59fcd00f88c0f7304507481575767c4df8d25fb8028dfda832e67a
3
+ metadata.gz: f0d3d538740dea05977c6cc73631fc7c9882e3268e85b58d2842777447c75a1a
4
+ data.tar.gz: ba22ff671f68ff6796ccf64d07f80516ec87ac8bdc8e7988b629e8fcc60af2eb
5
5
  SHA512:
6
- metadata.gz: 8db21442dbaf854f89d31931a97321a761c42e9dfc0ebd407d85475db75af389fc21b025b4cc376a0d9943fd3d8432d6ecb407ccd4bb4b409b5442b063a69826
7
- data.tar.gz: 80aef52be64d6387edd5497be96f372cd95836adea7ee388167f9dade01c5f9ff2a90d23626803feb1a04c1520808edd24c7e20315408c3d119cbcea2cd1dfd2
6
+ metadata.gz: 7a8f2114418c6380ab21617d3b4d65a217d319d926454979769b60b21cd4c5fc101db7396d9e2c47b23acf11bf46343b5712bf7300adb373ddeec2b691c8d9f5
7
+ data.tar.gz: 905e6e5b72d2e458a08792dba7f9de2e8a2e648dfbb90e7cb868e21800bbda5f84f284d896f29ce7d630cd8b22a01768f3230fdecf096ca001db1d2e578c1fa7
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- camify (1.0.1)
4
+ camify (1.0.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/Rakefile CHANGED
@@ -3,4 +3,8 @@ require "rspec/core/rake_task"
3
3
 
4
4
  Dir.glob('tasks/**/*.rake').each(&method(:import))
5
5
 
6
+ task :console do
7
+ exec "irb -r camify -I ./lib"
8
+ end
9
+
6
10
  task :default => :spec
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Shawn Koski"]
10
10
  spec.email = ["shawnnkoski@gmail.com"]
11
11
 
12
- spec.summary = %q{English to Cam Newton}
13
- spec.description = %q{Convert a string of of characters into a Cam Newton style string}
12
+ spec.summary = %q{This gem gives all lower case letter in a string some type of accent.}
13
+ spec.description = %q{Give all lower case letters in a string an accent. This gem was inspired by Cam Newton's social media messages(instagram, twitter). Just a fun little project during my time at the Flatiron School to learn how RubyGems work. Use rake console to run in irb so you can test it out.}
14
14
  spec.homepage = "https://github.com/snkoski/camify-rubygem"
15
15
  spec.license = "MIT"
16
16
 
@@ -1,3 +1,3 @@
1
1
  class Camify
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: camify
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shawn Koski
@@ -52,7 +52,10 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '3.0'
55
- description: Convert a string of of characters into a Cam Newton style string
55
+ description: Give all lower case letters in a string an accent. This gem was inspired
56
+ by Cam Newton's social media messages(instagram, twitter). Just a fun little project
57
+ during my time at the Flatiron School to learn how RubyGems work. Use rake console
58
+ to run in irb so you can test it out.
56
59
  email:
57
60
  - shawnnkoski@gmail.com
58
61
  executables: []
@@ -97,5 +100,5 @@ rubyforge_project:
97
100
  rubygems_version: 2.7.6
98
101
  signing_key:
99
102
  specification_version: 4
100
- summary: English to Cam Newton
103
+ summary: This gem gives all lower case letter in a string some type of accent.
101
104
  test_files: []