Skip to content

Commit

Permalink
Rollback Faker::Time changes (#1683)
Browse files Browse the repository at this point in the history
* Rollback Faker::Time changes

* Remove .gem file
  • Loading branch information
vbrazo authored Aug 10, 2019
1 parent b3fe778 commit 5ea0557
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 49 deletions.
9 changes: 9 additions & 0 deletions doc/default/time.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,19 @@
# Random Time between two times
# Keyword arguments: from, to, format
Faker::Time.between(from: DateTime.now - 1, to: DateTime.now) #=> "2014-09-18 12:30:59 -0700"

# Random Stringified time between two times, formatted to the specified I18n format
# (Examples are from a Rails console with rails-i18n 5.1.1 defaults loaded)
I18n.locale = 'en-US'
Faker::Time.between(from: DateTime.now - 1, to: DateTime.now, format: :default) #=> "Tue, 16 Oct 2018 10:48:27 AM -05:00"
Faker::Time.between(from: DateTime.now - 1, to: DateTime.now, format: :short) #=> "15 Oct 10:48 AM"
Faker::Time.between(from: DateTime.now - 1, to: DateTime.now, format: :long) #=> "October 15, 2018 10:48 AM"

I18n.locale = 'ja'
Faker::Time.between(from: DateTime.now - 1, to: DateTime.now, format: :default) #=> "2018/10/15 10:48:27"
Faker::Time.between(from: DateTime.now - 1, to: DateTime.now, format: :short) #=> "18/10/15 10:48"
Faker::Time.between(from: DateTime.now - 1, to: DateTime.now, format: :long) #=> "2018年10月16日(火) 10時48分27秒 -0500"

# Random Time between two dates, within specified part of the day
# Keyword arguments: from, to, period
Faker::Time.between_dates(from: Date.today - 1, to: Date.today, period: :all) #=> "2014-09-19 07:03:30 -0700"
Expand Down
49 changes: 0 additions & 49 deletions lib/locales/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,52 +9,3 @@ en:
pm: "PM"
faker:
separator: ' & '
date:
abbr_day_names:
- Sun
- Mon
- Tue
- Wed
- Thu
- Fri
- Sat
abbr_month_names:
-
- Jan
- Feb
- Mar
- Apr
- May
- Jun
- Jul
- Aug
- Sep
- Oct
- Nov
- Dec
day_names:
- Sunday
- Monday
- Tuesday
- Wednesday
- Thursday
- Friday
- Saturday
formats:
default: "%m-%d-%Y"
long: "%B %d, %Y"
short: "%b %d"
month_names:
-
- January
- February
- March
- April
- May
- June
- July
- August
- September
- October
- November
- December

0 comments on commit 5ea0557

Please sign in to comment.