faker-gpk 0.1.0 → 0.1.1

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: 68ae1361fb84ffe5ba4a9d41a39506ac6efd7ce6bd076473e9a38977ff87ab71
4
- data.tar.gz: 87d7a424ab505e419a40685a0250bd1e6765aa5b61f69a31578b93be63a7f93f
3
+ metadata.gz: 933888f00b621202fed4e39fef6250c3247e94f7eb57a25a8420cb27503a8181
4
+ data.tar.gz: f0769ef92435ed507eb27a5842a254c99c8a4bc4c3a5ab024ef7eb9887e0b885
5
5
  SHA512:
6
- metadata.gz: d414895bd25627daf8ac98eb71dc5a5b545bf0cf0419654d135ebb53eb48b07f3e30bca966db9f25373bdd7f7eec786d10045667534748feaa4045db077ae573
7
- data.tar.gz: 6c9a83d5a823f7afc4d8b577f16287f0489cd62d9e9fc1188e92f49d5de7770f0b4a6b7cb7d17dcf1be0768a8f1d50f4e5cd760a02c315f10eb8b70eec43ae7e
6
+ metadata.gz: 3d9e8ba7f96e6facde4cc46c8a8ab86739bc6e6967f8f999627154f15f375f431a4111880d8a508d00292a73135c2d487cf2311e471dfb273e517d1b2e1e7862
7
+ data.tar.gz: b7961bb33797a2935adbab47ae1ad4ee336d9a89a2cf6b6472cb4d98d2ba5e9a295e3d08741eddcce11e6d8460de28b9cd941b36809dc4e46a9ead898ba88651
data/README.md CHANGED
@@ -1,24 +1,24 @@
1
1
  # Faker::GPK
2
2
 
3
- TODO: Delete this and the text below, and describe your gem
4
-
5
- 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/faker-gpk`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ Faker extension for Garbage Pail Kids
6
4
 
7
5
  ## Installation
8
6
 
9
- TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
-
11
7
  Install the gem and add to the application's Gemfile by executing:
12
8
 
13
- $ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
9
+ $ bundle add faker-gpk
14
10
 
15
11
  If bundler is not being used to manage dependencies, install the gem by executing:
16
12
 
17
- $ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
13
+ $ gem install faker-gpk
18
14
 
19
15
  ## Usage
20
16
 
21
- TODO: Write usage instructions here
17
+ Generate a name of our favourite Garbage Pail Kids
18
+
19
+ ```ruby
20
+ Faker::TradingCards::GarbagePailKids.name # => 'Nasty NICK'
21
+ ```
22
22
 
23
23
  ## Development
24
24
 
@@ -28,7 +28,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
28
28
 
29
29
  ## Contributing
30
30
 
31
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/faker-gpk.
31
+ Bug reports and pull requests are welcome on GitHub at https://github.com/braindeaf/faker-gpk.
32
32
 
33
33
  ## License
34
34
 
@@ -1,5 +1,5 @@
1
1
  module Faker
2
2
  module GPK
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end