faker_unique 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 3e68d2dfc60e4218be782b8ce729b327de8ef3bd
4
+ data.tar.gz: cd19eba80e0a5700e2c7f9c3688d4abf0c0be7fb
5
+ SHA512:
6
+ metadata.gz: 55e076fd42040bc38d7432cb9a08a7024b8e2b0b7c22aed29afccd1a6922a7c1942666ab155d0a44cdca4c3193c08e64b19b14a911c21f51c20e7d8b3df6d8e6
7
+ data.tar.gz: 5f6a35eceb0bab1ec7bfdbe4037645c3dbc9c0ef77d509d4bc8df72f518bf2b76167e4e74c6ec83a5b704c1921c5044ace1fbb89327371df597a1970de43b713
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in faker_unique.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2016 Daichi Hirata
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,45 @@
1
+ # FakerUnique
2
+
3
+ The patch to add the `uniq` method to faker.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'faker_unique'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install faker_unique
20
+
21
+ ## Usage
22
+
23
+ ``` ruby
24
+ # return unique values
25
+ 1000.times.map { Faker::Name.uniq.name }.uniq.size # => 1000
26
+
27
+ # change number of max retries to generate the unique value, default value is `100`
28
+ Faker::Internet.uniq(1000).email
29
+
30
+ # raise an error when it can't generate a valid value
31
+ 1000.times.map { Faker::Pokemon.uniq.name } #=> RuntimeError: Maximum retries of 100 reached without finding a unique value
32
+
33
+ # reset generated values so far
34
+ Faker::Pokemon.uniq.reset!
35
+ ```
36
+
37
+ ## Development
38
+
39
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
40
+
41
+ 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).
42
+
43
+ ## Contributing
44
+
45
+ Bug reports and pull requests are welcome on GitHub at https://github.com/daichirata/faker_unique.
data/Rakefile ADDED
@@ -0,0 +1,13 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+
4
+ task :default => :test
5
+
6
+ desc "Run test_unit based test"
7
+ Rake::TestTask.new do |t|
8
+ # To run test for only one file (or file path pattern)
9
+ # $ bundle exec rake test TEST=test/test_specified_path.rb
10
+ t.libs << "test"
11
+ t.test_files = Dir["test/**/test_*.rb"]
12
+ t.verbose = true
13
+ end
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "faker_unique"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'faker_unique/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "faker_unique"
8
+ spec.version = FakerUnique::VERSION
9
+ spec.authors = ["Daichi HIRATA"]
10
+ spec.email = ["bunny.hop.md@gmail.com"]
11
+
12
+ spec.summary = "The patch to add the `uniq` method to faker."
13
+ spec.description = "The patch to add the `uniq` method to faker."
14
+ spec.homepage = "https://github.com/daichirata/faker_unique"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
+ spec.bindir = "exe"
18
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_dependency "faker"
22
+ spec.add_development_dependency "bundler", "~> 1.12"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ spec.add_development_dependency "test-unit"
25
+ end
@@ -0,0 +1,40 @@
1
+ require "faker_unique/version"
2
+ require "faker"
3
+
4
+ module FakerUnique
5
+ def uniq(max_retries = 100)
6
+ (@proxy ||= UniqueProxy.new(self)).tap do |p|
7
+ p.max_retries = max_retries
8
+ end
9
+ end
10
+
11
+ class UniqueProxy
12
+ attr_reader :pool
13
+ attr_writer :max_retries
14
+
15
+ def initialize(klass)
16
+ @klass = klass
17
+ reset!
18
+ end
19
+
20
+ def reset!
21
+ @pool = Hash.new {|h,k| h[k] = {}}
22
+ end
23
+
24
+ def method_missing(m, *args, &block)
25
+ counter = 0
26
+ begin
27
+ if counter > @max_retries
28
+ raise "Maximum retries of %d reached without finding a unique value" % @max_retries
29
+ end
30
+ res = @klass.send(m, *args, &block)
31
+ counter += 1
32
+ end while @pool[m][res]
33
+
34
+ @pool[m][res] = true
35
+ res
36
+ end
37
+ end
38
+ end
39
+
40
+ Faker::Base.extend(FakerUnique)
@@ -0,0 +1,3 @@
1
+ module FakerUnique
2
+ VERSION = "0.1.0"
3
+ end
metadata ADDED
@@ -0,0 +1,109 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: faker_unique
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Daichi HIRATA
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-08-05 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: faker
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.12'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.12'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: test-unit
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: The patch to add the `uniq` method to faker.
70
+ email:
71
+ - bunny.hop.md@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - Gemfile
78
+ - LICENSE
79
+ - README.md
80
+ - Rakefile
81
+ - bin/console
82
+ - bin/setup
83
+ - faker_unique.gemspec
84
+ - lib/faker_unique.rb
85
+ - lib/faker_unique/version.rb
86
+ homepage: https://github.com/daichirata/faker_unique
87
+ licenses: []
88
+ metadata: {}
89
+ post_install_message:
90
+ rdoc_options: []
91
+ require_paths:
92
+ - lib
93
+ required_ruby_version: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ">="
96
+ - !ruby/object:Gem::Version
97
+ version: '0'
98
+ required_rubygems_version: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ requirements: []
104
+ rubyforge_project:
105
+ rubygems_version: 2.5.1
106
+ signing_key:
107
+ specification_version: 4
108
+ summary: The patch to add the `uniq` method to faker.
109
+ test_files: []