forked from faker-ruby/faker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Rubocop + fixes still has some errors * Readd travis script
- Loading branch information
1 parent
17994e1
commit 7df1cd4
Showing
182 changed files
with
1,117 additions
and
1,180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Metrics/LineLength: | ||
Enabled: false | ||
Metrics/MethodLength: | ||
Enabled: false | ||
Metrics/ClassLength: | ||
Enabled: false | ||
Metrics/BlockLength: | ||
Enabled: false | ||
Metrics/AbcSize: | ||
Enabled: false | ||
Metrics/PerceivedComplexity: | ||
Enabled: false | ||
Metrics/CyclomaticComplexity: | ||
Enabled: false | ||
Style/Documentation: | ||
Enabled: false | ||
Style/DateTime: | ||
Enabled: false | ||
Lint/UnifiedInteger: | ||
Enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,4 @@ | ||
source "https://rubygems.org" | ||
source 'https://rubygems.org' | ||
|
||
# Specify your gem's dependencies in faker.gemspec | ||
gemspec | ||
|
||
group :development, :test do | ||
gem "test-unit" | ||
gem "rake" | ||
gem "minitest" | ||
gem "timecop" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,25 @@ | ||
$:.push File.expand_path("../lib", __FILE__) | ||
require "faker/version" | ||
$LOAD_PATH.push File.expand_path('lib', __dir__) | ||
require 'faker/version' | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "faker" | ||
s.name = 'faker' | ||
s.version = Faker::VERSION | ||
s.platform = Gem::Platform::RUBY | ||
s.authors = ["Benjamin Curtis"] | ||
s.email = ["[email protected]"] | ||
s.homepage = "https://github.com/stympy/faker" | ||
s.summary = %q{Easily generate fake data} | ||
s.description = %q{Faker, a port of Data::Faker from Perl, is used to easily generate fake data: names, addresses, phone numbers, etc.} | ||
s.authors = ['Benjamin Curtis'] | ||
s.email = ['[email protected]'] | ||
s.homepage = 'https://github.com/stympy/faker' | ||
s.summary = 'Easily generate fake data' | ||
s.description = 'Faker, a port of Data::Faker from Perl, is used to easily generate fake data: names, addresses, phone numbers, etc.' | ||
s.license = 'MIT' | ||
|
||
s.add_runtime_dependency('i18n', '>= 0.7') | ||
s.add_development_dependency('minitest') | ||
s.add_development_dependency('rake') | ||
s.add_development_dependency('rubocop') | ||
s.add_development_dependency('test-unit') | ||
s.add_development_dependency('timecop') | ||
s.required_ruby_version = '>= 2.1' | ||
|
||
s.files = Dir['lib/**/*'] + %w(History.md License.txt CHANGELOG.md README.md) | ||
s.require_paths = ["lib"] | ||
s.files = Dir['lib/**/*'] + %w[History.md License.txt CHANGELOG.md README.md] | ||
s.require_paths = ['lib'] | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,3 @@ def downcase | |
end | ||
end | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.