├── .gitignore ├── .rspec ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib ├── retryable_find_or_create_by.rb └── retryable_find_or_create_by │ └── version.rb ├── retryable_find_or_create_by.gemspec └── spec ├── base_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamipo/retryable_find_or_create_by/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamipo/retryable_find_or_create_by/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamipo/retryable_find_or_create_by/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamipo/retryable_find_or_create_by/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamipo/retryable_find_or_create_by/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamipo/retryable_find_or_create_by/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamipo/retryable_find_or_create_by/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/retryable_find_or_create_by.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamipo/retryable_find_or_create_by/HEAD/lib/retryable_find_or_create_by.rb -------------------------------------------------------------------------------- /lib/retryable_find_or_create_by/version.rb: -------------------------------------------------------------------------------- 1 | module RetryableFindOrCreateBy 2 | VERSION = "0.1.0" 3 | end 4 | -------------------------------------------------------------------------------- /retryable_find_or_create_by.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamipo/retryable_find_or_create_by/HEAD/retryable_find_or_create_by.gemspec -------------------------------------------------------------------------------- /spec/base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamipo/retryable_find_or_create_by/HEAD/spec/base_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamipo/retryable_find_or_create_by/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------