├── .gitignore ├── .rspec ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── human_time.gemspec ├── lib ├── human_time.rb └── human_time │ ├── rspec_matchers.rb │ └── version.rb └── spec ├── date_spec.rb ├── date_time_spec.rb ├── human_time_spec.rb ├── rspec_matchers_spec.rb ├── spec_helper.rb ├── support └── shared_examples.rb └── time_spec.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenan/human_time/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenan/human_time/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenan/human_time/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenan/human_time/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenan/human_time/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenan/human_time/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenan/human_time/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenan/human_time/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenan/human_time/HEAD/bin/setup -------------------------------------------------------------------------------- /human_time.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenan/human_time/HEAD/human_time.gemspec -------------------------------------------------------------------------------- /lib/human_time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenan/human_time/HEAD/lib/human_time.rb -------------------------------------------------------------------------------- /lib/human_time/rspec_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenan/human_time/HEAD/lib/human_time/rspec_matchers.rb -------------------------------------------------------------------------------- /lib/human_time/version.rb: -------------------------------------------------------------------------------- 1 | module HumanTime 2 | VERSION = "0.2.3" 3 | end 4 | -------------------------------------------------------------------------------- /spec/date_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenan/human_time/HEAD/spec/date_spec.rb -------------------------------------------------------------------------------- /spec/date_time_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenan/human_time/HEAD/spec/date_time_spec.rb -------------------------------------------------------------------------------- /spec/human_time_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenan/human_time/HEAD/spec/human_time_spec.rb -------------------------------------------------------------------------------- /spec/rspec_matchers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenan/human_time/HEAD/spec/rspec_matchers_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenan/human_time/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/shared_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenan/human_time/HEAD/spec/support/shared_examples.rb -------------------------------------------------------------------------------- /spec/time_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenan/human_time/HEAD/spec/time_spec.rb --------------------------------------------------------------------------------