-
Notifications
You must be signed in to change notification settings - Fork 225
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b806226
commit 48806e1
Showing
2 changed files
with
9 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,29 @@ | ||
# Generated by jeweler | ||
# DO NOT EDIT THIS FILE DIRECTLY | ||
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command | ||
# -*- encoding: utf-8 -*- | ||
|
||
require File.expand_path('../lib/timecop/version', __FILE__) | ||
|
||
Gem::Specification.new do |s| | ||
s.name = %q{timecop} | ||
s.version = Timecop::VERSION | ||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | ||
s.required_ruby_version = Gem::Requirement.new(">= 1.9.2") | ||
s.authors = ["Travis Jeffery", "John Trupiano"] | ||
s.date = Time.now.strftime("%Y-%m-%d") | ||
s.description = %q{A gem providing "time travel" and "time freezing" capabilities, making it dead simple to test time-dependent code. It provides a unified method to mock Time.now, Date.today, and DateTime.now in a single call.} | ||
s.email = %q{[email protected]} | ||
s.extra_rdoc_files = [ | ||
"LICENSE", | ||
"README.markdown" | ||
"README.markdown" | ||
] | ||
s.files = [ | ||
"LICENSE", | ||
"README.markdown", | ||
"Rakefile", | ||
"lib/timecop.rb", | ||
"lib/timecop/time_extensions.rb", | ||
"lib/timecop/time_stack_item.rb", | ||
"lib/timecop/version.rb", | ||
"lib/timecop/timecop.rb", | ||
"test/test_helper.rb", | ||
"test/time_stack_item_test.rb", | ||
"test/timecop_test.rb", | ||
"test/timecop_without_date_test.rb", | ||
"test/timecop_without_date_but_with_time_test.rb" | ||
"LICENSE", | ||
"README.markdown", | ||
"Rakefile", | ||
"lib/timecop.rb", | ||
"lib/timecop/time_extensions.rb", | ||
"lib/timecop/time_stack_item.rb", | ||
"lib/timecop/version.rb", | ||
"lib/timecop/timecop.rb" | ||
] | ||
s.homepage = %q{https://github.com/travisjeffery/timecop} | ||
s.rdoc_options = ["--charset=UTF-8"] | ||
s.require_paths = ["lib"] | ||
s.rubygems_version = %q{1.3.7} | ||
s.summary = %q{A gem providing "time travel" and "time freezing" capabilities, making it dead simple to test time-dependent code. It provides a unified method to mock Time.now, Date.today, and DateTime.now in a single call.} | ||
s.license = "MIT" | ||
s.test_files = [ | ||
"test/test_helper.rb", | ||
"test/time_stack_item_test.rb", | ||
"test/timecop_test.rb", | ||
"test/timecop_without_date_test.rb", | ||
"test/timecop_without_date_but_with_time_test.rb" | ||
] | ||
|
||
if s.respond_to? :specification_version then | ||
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION | ||
s.specification_version = 3 | ||
|
||
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then | ||
else | ||
end | ||
else | ||
end | ||
end | ||
|