├── .gitignore ├── AUTHORS ├── BENCHMARKS ├── COPYING ├── README.md ├── Rakefile ├── doc ├── asciidoc.conf ├── changes.txt ├── images │ └── icons │ │ ├── callouts │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ │ ├── caution.png │ │ ├── example.png │ │ ├── home.png │ │ ├── important.png │ │ ├── next.png │ │ ├── note.png │ │ ├── prev.png │ │ ├── tip.png │ │ ├── up.png │ │ └── warning.png ├── license.txt └── stylesheets │ ├── handbookish-manpage.css │ ├── handbookish-quirks.css │ └── handbookish.css ├── ext ├── date_performance.c └── extconf.rb ├── lib └── date │ ├── memoize.rb │ └── performance.rb ├── misc ├── asciidoc.rake ├── date-1.8.5 │ ├── date.rb │ ├── date │ │ └── format.rb │ └── date2.rb ├── date_patch.rb └── project.rake └── test ├── benchmarks.rb ├── date_memoize_test.rb └── extension_test.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/AUTHORS -------------------------------------------------------------------------------- /BENCHMARKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/BENCHMARKS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/Rakefile -------------------------------------------------------------------------------- /doc/asciidoc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/asciidoc.conf -------------------------------------------------------------------------------- /doc/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/changes.txt -------------------------------------------------------------------------------- /doc/images/icons/callouts/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/callouts/1.png -------------------------------------------------------------------------------- /doc/images/icons/callouts/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/callouts/10.png -------------------------------------------------------------------------------- /doc/images/icons/callouts/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/callouts/11.png -------------------------------------------------------------------------------- /doc/images/icons/callouts/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/callouts/12.png -------------------------------------------------------------------------------- /doc/images/icons/callouts/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/callouts/13.png -------------------------------------------------------------------------------- /doc/images/icons/callouts/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/callouts/14.png -------------------------------------------------------------------------------- /doc/images/icons/callouts/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/callouts/15.png -------------------------------------------------------------------------------- /doc/images/icons/callouts/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/callouts/2.png -------------------------------------------------------------------------------- /doc/images/icons/callouts/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/callouts/3.png -------------------------------------------------------------------------------- /doc/images/icons/callouts/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/callouts/4.png -------------------------------------------------------------------------------- /doc/images/icons/callouts/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/callouts/5.png -------------------------------------------------------------------------------- /doc/images/icons/callouts/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/callouts/6.png -------------------------------------------------------------------------------- /doc/images/icons/callouts/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/callouts/7.png -------------------------------------------------------------------------------- /doc/images/icons/callouts/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/callouts/8.png -------------------------------------------------------------------------------- /doc/images/icons/callouts/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/callouts/9.png -------------------------------------------------------------------------------- /doc/images/icons/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/caution.png -------------------------------------------------------------------------------- /doc/images/icons/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/example.png -------------------------------------------------------------------------------- /doc/images/icons/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/home.png -------------------------------------------------------------------------------- /doc/images/icons/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/important.png -------------------------------------------------------------------------------- /doc/images/icons/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/next.png -------------------------------------------------------------------------------- /doc/images/icons/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/note.png -------------------------------------------------------------------------------- /doc/images/icons/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/prev.png -------------------------------------------------------------------------------- /doc/images/icons/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/tip.png -------------------------------------------------------------------------------- /doc/images/icons/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/up.png -------------------------------------------------------------------------------- /doc/images/icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/images/icons/warning.png -------------------------------------------------------------------------------- /doc/license.txt: -------------------------------------------------------------------------------- 1 | include::../COPYING[] 2 | -------------------------------------------------------------------------------- /doc/stylesheets/handbookish-manpage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/stylesheets/handbookish-manpage.css -------------------------------------------------------------------------------- /doc/stylesheets/handbookish-quirks.css: -------------------------------------------------------------------------------- 1 | /* Workarounds for IE6's broken and incomplete CSS2. */ 2 | 3 | -------------------------------------------------------------------------------- /doc/stylesheets/handbookish.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/doc/stylesheets/handbookish.css -------------------------------------------------------------------------------- /ext/date_performance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/ext/date_performance.c -------------------------------------------------------------------------------- /ext/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/ext/extconf.rb -------------------------------------------------------------------------------- /lib/date/memoize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/lib/date/memoize.rb -------------------------------------------------------------------------------- /lib/date/performance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/lib/date/performance.rb -------------------------------------------------------------------------------- /misc/asciidoc.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/misc/asciidoc.rake -------------------------------------------------------------------------------- /misc/date-1.8.5/date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/misc/date-1.8.5/date.rb -------------------------------------------------------------------------------- /misc/date-1.8.5/date/format.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/misc/date-1.8.5/date/format.rb -------------------------------------------------------------------------------- /misc/date-1.8.5/date2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/misc/date-1.8.5/date2.rb -------------------------------------------------------------------------------- /misc/date_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/misc/date_patch.rb -------------------------------------------------------------------------------- /misc/project.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/misc/project.rake -------------------------------------------------------------------------------- /test/benchmarks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/test/benchmarks.rb -------------------------------------------------------------------------------- /test/date_memoize_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/test/date_memoize_test.rb -------------------------------------------------------------------------------- /test/extension_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rtomayko/date-performance/HEAD/test/extension_test.rb --------------------------------------------------------------------------------