pax_global_header00006660000000000000000000000064136035465160014523gustar00rootroot0000000000000052 comment=5e0b1750dc53fd3451bd9489709639d0979226b3 gitlab-chronic-v0.10.6/000077500000000000000000000000001360354651600146625ustar00rootroot00000000000000gitlab-chronic-v0.10.6/.gitignore000066400000000000000000000000711360354651600166500ustar00rootroot00000000000000*.rbc .yardoc /pkg/ /coverage/ /doc/ /tags/ Gemfile.lock gitlab-chronic-v0.10.6/.gitlab-ci.yml000066400000000000000000000004761360354651600173250ustar00rootroot00000000000000image: "ruby:2.6-alpine" cache: paths: - vendor/ruby before_script: - apk add --update git build-base tzdata - gem install bundler - bundle install --path vendor/ruby rspec: script: - bundle exec rake test - ln -s /usr/share/zoneinfo/America/Chicago /etc/localtime - bundle exec rake test gitlab-chronic-v0.10.6/.travis.yml000066400000000000000000000001431360354651600167710ustar00rootroot00000000000000language: ruby rvm: - 1.9.3 - 1.9.2 - 1.8.7 - jruby-19mode - jruby-18mode - rbx-19mode gitlab-chronic-v0.10.6/Gemfile000066400000000000000000000000471360354651600161560ustar00rootroot00000000000000source "https://rubygems.org" gemspec gitlab-chronic-v0.10.6/HISTORY.md000066400000000000000000000217311360354651600163510ustar00rootroot00000000000000## --- Begin gitlab-chronic changes --- # 0.10.6 / 2020-01-02 * Require gitlab-chronic in tests (https://gitlab.com/gitlab-org/gitlab-chronic/merge_requests/9) # 0.10.5 / 2019-11-25 * Revert changes made between v0.10.2..master (https://gitlab.com/gitlab-org/gitlab-chronic/merge_requests/7) # 0.10.4 / 2019-11-24 * Rename chronic -> gitlab-chronic (https://gitlab.com/gitlab-org/gitlab-chronic/merge_requests/5) # 0.10.3 / 2019-11-23 * Fix Daylight Savings parsing (https://gitlab.com/gitlab-org/gitlab-chronic/merge_requests/3) * Add .gitlab-ci.yml (https://gitlab.com/gitlab-org/gitlab-chronic/merge_requests/1) ## --- End gitlab-chronic changes --- # 0.10.2 / 2013-09-09 * Fix 1.8.7 support (due to be dropped in 0.11.0) * Bugfix for times with negative zones # 0.10.1 / 2013-08-27 * Support `ActiveSupport::TimeZone` (#209, #208) # 0.10.0 / 2013-08-25 * Chronic will parse subseconds correctly for all supported date/time formats (#195, #198 and #200) * Support for date format: dd.mm.yyyy (#197) * Option `:hours24` to parse as 24 hour clock (#201 and #202) * `:guess` option allows to specify which part of Span to return. (accepted values `false`,`true`,`:begin`, `:middle`, `:end`) * Replace `rcov` with `SimpleCov` for coverage generation * Add more tests * Various changes in codebase (#202 and #206) # 0.9.1 / 2013-02-25 * Ensure Chronic strips periods from day portions (#173) * Properly numerize "twelfth", "twentieth" etc. (#172, James McKinney) * Ensure Chronic is compatible with Ruby 2.0.0 (#165, Ravil Bayramgalin) # 0.9.0 / 2012-12-21 * Implement Chronic::Parser class and create an instance of this class instead of leaving all data in the class level of Chronic * Various bug fixes * Add support for excel date formats (#149, @jmondo) * Added support for time expressions such as '10 till' or 'half past two' (#146, @chicagogrooves) * Add support for RepeaterDayName, RepeaterMonthName, Ordinal/ScalarDay and Time (#153, @kareemk) # 0.8.0 / 2012-09-16 * Support parsing " of this month" (#109) * Support parsing ISO 8601 format (#115) * Support parsing "on " without a timestamp (#117) * Fix time parsing regexp (#125) * Support time when parsing dd-mm-yyy