Skip to content

Commit

Permalink
Roxygen 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hadley committed Nov 11, 2011
1 parent 75bddd2 commit e3649af
Show file tree
Hide file tree
Showing 62 changed files with 1,548 additions and 1,140 deletions.
39 changes: 29 additions & 10 deletions DESCRIPTION
@@ -1,5 +1,7 @@
Package: lubridate
Imports: plyr, stringr
Imports:
plyr,
stringr
Maintainer: Garrett Grolemund <grolemund@rice.edu>
License: GPL
Title: Make dealing with dates a little easier
Expand All @@ -18,12 +20,29 @@ Description: Lubridate makes it easier to work with dates
Enhances: chron, timeDate, zoo, xts, its, tis, timeSeries,
fts, tseries
Version: 0.2.5
Depends: R (>= 2.8)
Suggests: testthat
Collate: 'accessors-day.r' 'accessors-hour.r'
'accessors-minute.r' 'accessors-misc.r'
'accessors-month.r' 'accessors-second.r'
'accessors-tz.r' 'accessors-week.r' 'accessors-year.r'
'coercion.r' 'durations.r' 'epochs.r' 'help.r'
'intervals.r' 'ops.durations.r' 'parse.r' 'periods.r'
'pretty.r' 'round.r' 'util.r' 'zzz.r'
Depends:
R (>= 2.8)
Suggests:
testthat
Collate:
'accessors-day.r'
'accessors-hour.r'
'accessors-minute.r'
'accessors-misc.r'
'accessors-month.r'
'accessors-second.r'
'accessors-tz.r'
'accessors-week.r'
'accessors-year.r'
'coercion.r'
'durations.r'
'epochs.r'
'help.r'
'intervals.r'
'ops.durations.r'
'parse.r'
'periods.r'
'pretty.r'
'round.r'
'util.r'
'zzz.r'
331 changes: 204 additions & 127 deletions NAMESPACE
@@ -1,136 +1,213 @@
export(day, yday, mday, "day<-", "yday<-", "mday<-")
S3method(yday, default)
S3method(mday, default)
export(wday, "wday<-")
S3method(wday, default)
S3method(wday, numeric)
export(hour, "hour<-")
S3method(hour, default)
export(minute, "minute<-")
S3method(minute, default)
export(dst)
S3method(dst, default)
S3method(update, Date)
S3method(update, POSIXct)
S3method(update, POSIXlt)
export(month, "month<-")
S3method(month, default)
export(second, "second<-")
S3method(second, default)
export(tz, "tz<-")
S3method(tz, default)
S3method(tz, zoo)
S3method(tz, timeSeries)
S3method(tz, irts)
export(week, "week<-")
export(year, "year<-")
S3method(year, default)
S3method(as.POSIXlt, fts)
S3method(as.POSIXlt, its)
S3method(as.POSIXlt, timeSeries)
S3method(as.POSIXlt, irts)
S3method(as.POSIXlt, xts)
S3method(as.POSIXlt, zoo)
S3method(as.POSIXlt, tis)
S3method(as.POSIXct, fts)
S3method(as.POSIXct, its)
S3method(as.POSIXct, timeSeries)
S3method(as.POSIXct, irts)
S3method(as.POSIXct, xts)
S3method(as.POSIXct, zoo)
export(reclass_date)
S3method(reclass_date, POSIXlt)
S3method(reclass_date, POSIXct)
S3method(reclass_date, chron)
S3method(reclass_date, timeDate)
S3method(reclass_date, its)
S3method(reclass_date, ti)
S3method(reclass_date, Date)
S3method(format, duration)
S3method(print, duration)
S3method(rep, duration)
S3method("%%", duration)
S3method("%/%", duration)
S3method("%%", difftime)
S3method("%/%", difftime)
S3method("/", duration)
S3method("*", duration)
S3method("+", duration)
S3method("-", duration)
S3method(c, duration)
export(new_duration)
S3method(c, difftime)
export(new_difftime)
export("day<-")
export("hour<-")
export("int_end<-")
export("int_start<-")
export("mday<-")
export("minute<-")
export("month<-")
export("second<-")
export("tz<-")
export("wday<-")
export("week<-")
export("yday<-")
export("year<-")
export(add_dates)
export(am)
export(as.duration)
S3method(as.duration, default)
S3method(as.duration, period)
S3method(as.duration, interval)
S3method(as.duration, difftime)
export(eseconds, eminutes, ehours, edays, eweeks, eyears, dseconds, dminutes, dhours, ddays, dweeks, dyears, dmilliseconds, emilliseconds, dmicroseconds, emicroseconds, dnanoseconds, enanoseconds, dpicoseconds, epicoseconds)
export(is.instant, is.timepoint)
export(is.timespan)
export(is.POSIXt, is.POSIXlt, is.POSIXct)
export(is.duration)
export(is.difftime)
export(as.interval)
export(as.period)
export(ceiling_date)
export(d)
export(day)
export(days)
export(ddays)
export(decimal_date)
export(dhours)
export(dmicroseconds)
export(dmilliseconds)
export(dminutes)
export(dmy_h)
export(dmy_hm)
export(dmy_hms)
export(dmy)
export(dnanoseconds)
export(dpicoseconds)
export(dseconds)
export(dst)
export(dweeks)
export(dyears)
export(dym)
export(edays)
export(ehours)
export(emicroseconds)
export(emilliseconds)
export(eminutes)
export(enanoseconds)
export(epicoseconds)
export(eseconds)
export(eweeks)
export(eyears)
export(floor_date)
export(force_tz)
export(hm)
export(hms)
export(hour)
export(hours)
export(int_end)
export(int_start)
export(is.Date)
export(is.period)
export(is.difftime)
export(is.duration)
export(is.instant)
export(is.interval)
import(plyr, stringr)
export(new_interval)
S3method("%%", interval)
S3method("%/%", interval)
S3method("/", interval)
S3method("*", interval)
S3method("+", interval)
S3method("-", interval)
S3method(rep, interval)
S3method("[", interval)
S3method(c, interval)
S3method(format, interval)
S3method(print, interval)
export(as.interval)
export(int_start, "int_start<-")
export(int_end, "int_end<-")
export(add_dates)
export(is.period)
export(is.POSIXct)
export(is.POSIXlt)
export(is.POSIXt)
export(is.timepoint)
export(is.timespan)
export(leap_year)
export(m)
export(make_difftime)
export(subtract_dates)
export(ymd, myd, dym, ydm, mdy, dmy)
export(ymd_hms, ymd_hm, ymd_h, dmy_hms, dmy_hm, dmy_h, mdy_hms, mdy_hm, mdy_h, ydm_hms, ydm_hm, ydm_h, ymdThms)
export(mday)
export(mdy_h)
export(mdy_hm)
export(mdy_hms)
export(mdy)
export(microseconds)
export(milliseconds)
export(minute)
export(minutes)
export(month)
export(ms)
export(hm)
export(hms)
export(parse_date)
export(myd)
export(nanoseconds)
export(new_difftime)
export(new_duration)
export(new_interval)
export(new_period)
S3method("%/%", period)
S3method("%%", period)
S3method("/", period)
S3method("*", period)
S3method("+", period)
S3method("-", period)
S3method(rep, period)
S3method(print, period)
S3method(format, period)
S3method(c, period)
export(seconds, minutes, hours, days, weeks, years, y, m, w, d, milliseconds, microseconds, microseconds, nanoseconds, picoseconds)
S3method(months, numeric)
S3method(months, integer)
export(as.period)
S3method(as.period, default)
S3method(as.period, difftime)
S3method(as.period, interval)
S3method(as.period, duration)
export(pretty.dates, pretty.unit, pretty.sec, pretty.min, pretty.hour, pretty.day, pretty.month, pretty.year, pretty.point)
export(floor_date)
export(ceiling_date)
export(round_date)
export(leap_year)
export(now)
export(origin)
export(parse_date)
export(picoseconds)
export(pm)
export(pretty.dates)
export(pretty.day)
export(pretty.hour)
export(pretty.min)
export(pretty.month)
export(pretty.point)
export(pretty.sec)
export(pretty.unit)
export(pretty.year)
export(reclass_date)
export(round_date)
export(second)
export(seconds)
export(subtract_dates)
export(today)
export(am, pm)
export(tz)
export(w)
export(wday)
export(week)
export(weeks)
export(with_tz)
export(force_tz)
export(origin)
export(decimal_date)
S3method(decimal_date, default)
S3method(decimal_date, zoo)
S3method(decimal_date, its)
export(y)
export(yday)
export(ydm_h)
export(ydm_hm)
export(ydm_hms)
export(ydm)
export(year)
export(years)
export(ymd_h)
export(ymd_hm)
export(ymd_hms)
export(ymd)
export(ymdThms)
import(plyr)
import(stringr)
S3method("-",duration)
S3method("-",interval)
S3method("-",period)
S3method("[",interval)
S3method("*",duration)
S3method("*",interval)
S3method("*",period)
S3method("/",duration)
S3method("/",interval)
S3method("/",period)
S3method("%/%",difftime)
S3method("%/%",duration)
S3method("%/%",interval)
S3method("%/%",period)
S3method("%%",difftime)
S3method("%%",duration)
S3method("%%",interval)
S3method("%%",period)
S3method("+",duration)
S3method("+",interval)
S3method("+",period)
S3method(as.duration,default)
S3method(as.duration,difftime)
S3method(as.duration,interval)
S3method(as.duration,period)
S3method(as.period,default)
S3method(as.period,difftime)
S3method(as.period,duration)
S3method(as.period,interval)
S3method(as.POSIXct,fts)
S3method(as.POSIXct,irts)
S3method(as.POSIXct,its)
S3method(as.POSIXct,timeSeries)
S3method(as.POSIXct,xts)
S3method(as.POSIXct,zoo)
S3method(as.POSIXlt,fts)
S3method(as.POSIXlt,irts)
S3method(as.POSIXlt,its)
S3method(as.POSIXlt,timeSeries)
S3method(as.POSIXlt,tis)
S3method(as.POSIXlt,xts)
S3method(as.POSIXlt,zoo)
S3method(c,difftime)
S3method(c,duration)
S3method(c,interval)
S3method(c,period)
S3method(decimal_date,default)
S3method(decimal_date,its)
S3method(decimal_date,zoo)
S3method(dst,default)
S3method(format,duration)
S3method(format,interval)
S3method(format,period)
S3method(hour,default)
S3method(mday,default)
S3method(minute,default)
S3method(month,default)
S3method(months,integer)
S3method(months,numeric)
S3method(print,duration)
S3method(print,interval)
S3method(print,period)
S3method(reclass_date,chron)
S3method(reclass_date,Date)
S3method(reclass_date,its)
S3method(reclass_date,POSIXct)
S3method(reclass_date,POSIXlt)
S3method(reclass_date,ti)
S3method(reclass_date,timeDate)
S3method(rep,duration)
S3method(rep,interval)
S3method(rep,period)
S3method(second,default)
S3method(tz,default)
S3method(tz,irts)
S3method(tz,timeSeries)
S3method(tz,zoo)
S3method(update,Date)
S3method(update,POSIXct)
S3method(update,POSIXlt)
S3method(wday,default)
S3method(wday,numeric)
S3method(yday,default)
S3method(year,default)
2 changes: 1 addition & 1 deletion R/help.r
Expand Up @@ -149,5 +149,5 @@
#' @import plyr stringr
#' @docType package
#' @name lubridate
#' @aliases lubridate package-lubridate
#' @aliases lubridate lubridate-package
NULL

0 comments on commit e3649af

Please sign in to comment.