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 +4 -4
- data/README.md +9 -9
- data/lib/faker/gpk/version.rb +1 -1
- data/lib/faker/locales/en/garbage_pail_kids.yml +1460 -167
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 933888f00b621202fed4e39fef6250c3247e94f7eb57a25a8420cb27503a8181
|
4
|
+
data.tar.gz: f0769ef92435ed507eb27a5842a254c99c8a4bc4c3a5ab024ef7eb9887e0b885
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3d9e8ba7f96e6facde4cc46c8a8ab86739bc6e6967f8f999627154f15f375f431a4111880d8a508d00292a73135c2d487cf2311e471dfb273e517d1b2e1e7862
|
7
|
+
data.tar.gz: b7961bb33797a2935adbab47ae1ad4ee336d9a89a2cf6b6472cb4d98d2ba5e9a295e3d08741eddcce11e6d8460de28b9cd941b36809dc4e46a9ead898ba88651
|
data/README.md
CHANGED
@@ -1,24 +1,24 @@
|
|
1
1
|
# Faker::GPK
|
2
2
|
|
3
|
-
|
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
|
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
|
13
|
+
$ gem install faker-gpk
|
18
14
|
|
19
15
|
## Usage
|
20
16
|
|
21
|
-
|
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/
|
31
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/braindeaf/faker-gpk.
|
32
32
|
|
33
33
|
## License
|
34
34
|
|
data/lib/faker/gpk/version.rb
CHANGED