├── .coveralls.yml ├── .document ├── .gitignore ├── .rvmrc ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README ├── README.rdoc ├── Rakefile ├── VERSION ├── lib ├── en.yml └── time_diff.rb ├── test ├── helper.rb └── test_time_diff.rb └── time_diff.gemspec /.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SvopcwDKb68O88s8X9fkrPbombd3fd00K 2 | -------------------------------------------------------------------------------- /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhidsm/time_diff/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhidsm/time_diff/HEAD/.gitignore -------------------------------------------------------------------------------- /.rvmrc: -------------------------------------------------------------------------------- 1 | rvm use time_diff@ruby-1.8.7-p352 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhidsm/time_diff/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhidsm/time_diff/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhidsm/time_diff/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhidsm/time_diff/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhidsm/time_diff/HEAD/README -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhidsm/time_diff/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhidsm/time_diff/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.3.0 -------------------------------------------------------------------------------- /lib/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhidsm/time_diff/HEAD/lib/en.yml -------------------------------------------------------------------------------- /lib/time_diff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhidsm/time_diff/HEAD/lib/time_diff.rb -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhidsm/time_diff/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/test_time_diff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhidsm/time_diff/HEAD/test/test_time_diff.rb -------------------------------------------------------------------------------- /time_diff.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhidsm/time_diff/HEAD/time_diff.gemspec --------------------------------------------------------------------------------