Skip to content

Instantly share code, notes, and snippets.

@awead
Last active October 21, 2015 13:10
Show Gist options
  • Save awead/0023a0f385eef9ebaf2d to your computer and use it in GitHub Desktop.
Save awead/0023a0f385eef9ebaf2d to your computer and use it in GitHub Desktop.
Accession dates
> accession = Accession.find("archivesphere:707957642")
> accession.date_uploaded
=> Sun, 11 Oct 2015
> accession.date_uploaded.class
=> Date
> accession.create_date
=> "2015-10-11T20:46:04.369Z"
> accession.create_date.class
=> String
> accession.create_date.class
=> String
> accession.modified_date
=> "2015-10-11T20:46:04.962Z"
> accession.modified_date.class
=> String
> accession.to_solr['system_modified_dtsi']
=> "2015-10-11T20:46:04Z"
> accession.to_solr['system_create_dtsi']
=> "2015-10-11T20:46:04Z"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment