Skip to content

Commit

Permalink
Merge 29d608c into 73853af
Browse files Browse the repository at this point in the history
  • Loading branch information
0exp committed Jul 21, 2018
2 parents 73853af + 29d608c commit 308862c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions evil_events.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ Gem::Specification.new do |spec|
f.match(%r{^(spec|features)/})
end

spec.add_dependency 'dry-monads', '~> 0.4.0'
spec.add_dependency 'dry-types', '~> 0.13.2'
spec.add_dependency 'dry-struct', '~> 0.5.0'
spec.add_dependency 'dry-container', '~> 0.6.0'
spec.add_dependency 'concurrent-ruby', '~> 1.0.5'
spec.add_dependency 'symbiont-ruby', '~> 0.3.0'
spec.add_dependency 'qonfig', '~> 0.4.0'
spec.add_dependency 'dry-monads', '~> 1.0.0'
spec.add_dependency 'dry-types', '~> 0.13.2'
spec.add_dependency 'dry-struct', '~> 0.5.0'
spec.add_dependency 'dry-container', '~> 0.6.0'
spec.add_dependency 'concurrent-ruby', '~> 1.0.5'
spec.add_dependency 'symbiont-ruby', '~> 0.3.0'
spec.add_dependency 'qonfig', '~> 0.4.0'

spec.add_development_dependency 'coveralls', '~> 0.8.21'
spec.add_development_dependency 'simplecov', '~> 0.14.1'
Expand Down
2 changes: 1 addition & 1 deletion spec/support/spec_support/fake_data_generator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def gen_float(range = FLOAT_RANGE, round: 4)
end

def gen_str(max_len: STR_LENGTH, only_letters: false)
only_letters ? Array.new(STR_LENGTH) { STR_LETTERS.sample }.join : SecureRandom.hex(max_len)
only_letters ? Array.new(max_len) { STR_LETTERS.sample }.join : SecureRandom.hex(max_len)
end

def gen_obj
Expand Down

0 comments on commit 308862c

Please sign in to comment.