Initial commit to time_ext.

This commit is contained in:
2010-07-27 14:14:02 +03:00
commit b42704f9bd
9 changed files with 125 additions and 0 deletions

1
spec/spec.opts Normal file
View File

@@ -0,0 +1 @@
--color

9
spec/spec_helper.rb Normal file
View File

@@ -0,0 +1,9 @@
$LOAD_PATH.unshift(File.dirname(__FILE__))
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
require 'time_ext'
require 'spec'
require 'spec/autorun'
Spec::Runner.configure do |config|
end

7
spec/time_ext_spec.rb Normal file
View File

@@ -0,0 +1,7 @@
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
describe "TimeExt" do
it "fails" do
fail "hey buddy, you should probably rename this file and start specing for real"
end
end