Skip to content

Commit

Permalink
Remove jeweler and clean up gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
mishina2228 authored and joshuacronemeyer committed Dec 12, 2022
1 parent b806226 commit 48806e1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 41 deletions.
1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ gemspec
group :development do
gem 'rake'
gem 'nokogiri'
gem 'jeweler', '< 2.1.3'
gem 'pry'
gem 'mocha'
gem 'activesupport'
Expand Down
49 changes: 9 additions & 40 deletions timecop.gemspec
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

0 comments on commit 48806e1

Please sign in to comment.