File: strptime.rb

package info (click to toggle)
ruby-strptime 0.2.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 224 kB
  • sloc: ansic: 1,716; ruby: 320; makefile: 3; sh: 3
file content (10 lines) | stat: -rw-r--r-- 188 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
require "strptime/version"
begin
  require "strptime/#{RUBY_VERSION[/\d+.\d+/]}/strptime"
rescue LoadError
  require "strptime/strptime"
end

class Strptime
  # Your code goes here...
end