philiprehberger-random_data 0.1.1 → 0.1.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 +4 -4
- data/CHANGELOG.md +14 -1
- data/README.md +4 -4
- data/lib/philiprehberger/random_data/version.rb +1 -1
- 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: 6cb0ab7c118a7e427d54c2b809d02e32f0f374303a99aa7164136260d468fa22
|
|
4
|
+
data.tar.gz: dca5d564dc89aaa0203aad00af53f070e3be68d2cce7b77603570edfc6f4b6e6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e49f6b1166e3329ea385cf3881c890dbdcfd54e24f6c5630f331002eb5bc4fe913f66bb10234d9bf6ca93d108c14357e65c1827d8975fce59123ec7c08d63f4b
|
|
7
|
+
data.tar.gz: f05686e6fa55168dd956e520d4516ea6a5358435864f1dce9de83703383f3c191bf8db1f3f1e46d3a85e5ec9b8b396b6a6da01a46598ac5cb13a756a20686e59
|
data/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
|
-
|
|
9
|
+
|
|
10
|
+
## [0.1.3] - 2026-03-24
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Fix Installation section quote style to double quotes
|
|
14
|
+
- Remove inline comments from Development section to match template
|
|
15
|
+
|
|
16
|
+
## [0.1.2] - 2026-03-23
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
- Standardize README description to match template guide
|
|
20
|
+
- Update gemspec summary to match README description
|
|
21
|
+
|
|
22
|
+
## [0.1.1] - 2026-03-22
|
|
10
23
|
|
|
11
24
|
### Added
|
|
12
25
|
- Add bug_tracker_uri metadata to gemspec
|
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://rubygems.org/gems/philiprehberger-random_data)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
|
|
7
|
-
Lightweight random test data generator for names, emails, and common types
|
|
7
|
+
Lightweight random test data generator for names, emails, and common types
|
|
8
8
|
|
|
9
9
|
## Requirements
|
|
10
10
|
|
|
@@ -15,7 +15,7 @@ Lightweight random test data generator for names, emails, and common types. Incl
|
|
|
15
15
|
Add to your Gemfile:
|
|
16
16
|
|
|
17
17
|
```ruby
|
|
18
|
-
gem
|
|
18
|
+
gem "philiprehberger-random_data"
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
Or install directly:
|
|
@@ -94,8 +94,8 @@ Philiprehberger::RandomData.ipv4 # => "192.45.67.123"
|
|
|
94
94
|
|
|
95
95
|
```bash
|
|
96
96
|
bundle install
|
|
97
|
-
bundle exec rspec
|
|
98
|
-
bundle exec rubocop
|
|
97
|
+
bundle exec rspec
|
|
98
|
+
bundle exec rubocop
|
|
99
99
|
```
|
|
100
100
|
|
|
101
101
|
## License
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: philiprehberger-random_data
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- philiprehberger
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-03-
|
|
11
|
+
date: 2026-03-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Generate random test data including names, emails, phone numbers, UUIDs,
|
|
14
14
|
sentences, paragraphs, dates, numbers, and more. Includes 50 first names, 50 last
|