Commit 1c00a70e3909fc17be260d9e5b23d67c76a8bc95
1 parent
80ae556b
Exists in
master
and in
1 other branch
adding gem specification for jtrupiano-timecop
Showing
1 changed file
with
70 additions
and
0 deletions
Show diff stats
| @@ -0,0 +1,70 @@ | @@ -0,0 +1,70 @@ | ||
| 1 | +--- !ruby/object:Gem::Specification | ||
| 2 | +name: jtrupiano-timecop | ||
| 3 | +version: !ruby/object:Gem::Version | ||
| 4 | + version: 0.2.1 | ||
| 5 | +platform: ruby | ||
| 6 | +authors: | ||
| 7 | +- John Trupiano | ||
| 8 | +autorequire: | ||
| 9 | +bindir: bin | ||
| 10 | +cert_chain: [] | ||
| 11 | + | ||
| 12 | +date: 2009-03-06 00:00:00 -05:00 | ||
| 13 | +default_executable: | ||
| 14 | +dependencies: [] | ||
| 15 | + | ||
| 16 | +description: A gem providing simple ways to temporarily override Time.now, Date.today, and DateTime.now. It provides "time travel" capabilities, making it dead simple to test time-dependent code. | ||
| 17 | +email: jtrupiano@gmail.com | ||
| 18 | +executables: [] | ||
| 19 | + | ||
| 20 | +extensions: [] | ||
| 21 | + | ||
| 22 | +extra_rdoc_files: [] | ||
| 23 | + | ||
| 24 | +files: | ||
| 25 | +- History.txt | ||
| 26 | +- Manifest.txt | ||
| 27 | +- Rakefile | ||
| 28 | +- README.textile | ||
| 29 | +- VERSION.yml | ||
| 30 | +- lib/timecop | ||
| 31 | +- lib/timecop/stack_item.rb | ||
| 32 | +- lib/timecop/time_extensions.rb | ||
| 33 | +- lib/timecop/timecop.rb | ||
| 34 | +- lib/timecop/version.rb | ||
| 35 | +- lib/timecop.rb | ||
| 36 | +- test/run_tests.sh | ||
| 37 | +- test/test_timecop.rb | ||
| 38 | +- test/test_timecop_internals.rb | ||
| 39 | +- test/test_timecop_without_date.rb | ||
| 40 | +has_rdoc: true | ||
| 41 | +homepage: http://github.com/jtrupiano/timecop | ||
| 42 | +licenses: [] | ||
| 43 | + | ||
| 44 | +post_install_message: | ||
| 45 | +rdoc_options: | ||
| 46 | +- --inline-source | ||
| 47 | +- --charset=UTF-8 | ||
| 48 | +require_paths: | ||
| 49 | +- lib | ||
| 50 | +required_ruby_version: !ruby/object:Gem::Requirement | ||
| 51 | + requirements: | ||
| 52 | + - - ">=" | ||
| 53 | + - !ruby/object:Gem::Version | ||
| 54 | + version: "0" | ||
| 55 | + version: | ||
| 56 | +required_rubygems_version: !ruby/object:Gem::Requirement | ||
| 57 | + requirements: | ||
| 58 | + - - ">=" | ||
| 59 | + - !ruby/object:Gem::Version | ||
| 60 | + version: "0" | ||
| 61 | + version: | ||
| 62 | +requirements: [] | ||
| 63 | + | ||
| 64 | +rubyforge_project: johntrupiano | ||
| 65 | +rubygems_version: 1.3.4 | ||
| 66 | +signing_key: | ||
| 67 | +specification_version: 2 | ||
| 68 | +summary: A gem providing simple ways to temporarily override Time.now, Date.today, and DateTime.now. It provides "time travel" capabilities, making it dead simple to test time-dependent code. | ||
| 69 | +test_files: [] | ||
| 70 | + |