summaryrefslogtreecommitdiffhomepage
path: root/Rakefile
diff options
context:
space:
mode:
authorRandy Morgan <[email protected]>2011-11-30 08:10:13 +0900
committerRandy Morgan <[email protected]>2011-11-30 08:10:13 +0900
commit65b75c23c1911caeeb9206924cd6a009e241fb03 (patch)
treedd33730d33ab8fc76b6ddb3c3047b837bf0426ae /Rakefile
parent1313e3b246cbddba3d0e6b1cdcc63be4e675b903 (diff)
downloadcaxlsx-65b75c23c1911caeeb9206924cd6a009e241fb03.tar.gz
caxlsx-65b75c23c1911caeeb9206924cd6a009e241fb03.zip
From the docs on time "On some operating systems, this offset is allowed to be negative." perhaps travis is one of those systems that does not allow negative offsets. Using the integer value for 1900 and 1904 epocs
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile5
1 files changed, 0 insertions, 5 deletions
diff --git a/Rakefile b/Rakefile
index 5695a0c4..12ec6a52 100644
--- a/Rakefile
+++ b/Rakefile
@@ -10,11 +10,6 @@ end
task :test do
require 'rake/testtask'
- puts "The current time is: #{Time.now}"
-
- puts "1900 was: #{Time.local(1900,1,1)}"
- puts "1904 was: #{Time.local(1904,1,1)}"
-
Rake::TestTask.new do |t|
t.libs << 'test'
t.test_files = FileList['test/**/tc_*.rb']