[rubygem-timecop] Initial import

Michal Fojtik mfojtik at fedoraproject.org
Mon Nov 15 08:53:30 UTC 2010


commit 4c4ce272c9ef05fcfdc39374fea2a29a8f4c171d
Author: Michal Fojtik <mfojtik at redhat.com>
Date:   Mon Nov 15 09:53:23 2010 +0100

    Initial import

 .gitignore           |    2 +
 rubygem-timecop.spec |   86 ++++++++++++++++++++++++++++++++++++++++++++++++++
 sources              |    2 +
 3 files changed, 90 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..1ca690b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1,2 @@
+/rubygem-timecop-failed-assert-fix.patch
+/timecop-0.3.5.gem
diff --git a/rubygem-timecop.spec b/rubygem-timecop.spec
new file mode 100644
index 0000000..1d5c0da
--- /dev/null
+++ b/rubygem-timecop.spec
@@ -0,0 +1,86 @@
+%global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null)
+%global gemname timecop
+%global geminstdir %{gemdir}/gems/%{gemname}-%{version}
+%global rubyabi 1.8
+
+Summary: Provides a unified method to mock Time.now, Date.today in a single call
+Name: rubygem-%{gemname}
+Version: 0.3.5
+Release: 2%{?dist}
+Group: Development/Languages
+License: MIT
+URL: http://github.com/jtrupiano/timecop
+Source0: http://rubygems.org/downloads/%{gemname}-%{version}.gem
+Patch0: %{name}-failed-assert-fix.patch
+Requires: ruby(abi) = %{rubyabi}
+Requires: rubygems
+BuildRequires: rubygems
+BuildRequires: rubygem(test-unit)
+BuildArch: noarch
+Provides: rubygem(%{gemname}) = %{version}
+
+%description
+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.
+
+%package doc
+Summary: Documentation for %{name}
+Group: Documentation
+Requires:%{name} = %{version}-%{release}
+
+%description doc
+Documentation for %{name}
+
+%prep
+%setup -q -c -T 
+mkdir -p ./%{gemdir}
+gem install \
+	--local \
+	--install-dir ./%{gemdir} \
+	-V --force --rdoc \
+	%{SOURCE0}
+pushd .%{geminstdir}
+%patch0
+popd
+
+%build
+
+%install
+rm -rf %{buildroot}
+mkdir -p %{buildroot}%{gemdir}
+cp -va ./%{gemdir}/* %{buildroot}%{gemdir}
+
+%check
+pushd %{buildroot}/%{geminstdir}/test
+mv test_time_stack_item.rb disabled_test_time_stack_item.rb
+%_bindir/ruby -I../lib test_time*.rb
+mv disabled_test_time_stack_item.rb test_time_stack_item.rb
+popd
+
+%clean
+rm -rf %{buildroot}
+
+%files
+%defattr(-, root, root, -)
+%dir %{geminstdir}
+%{geminstdir}/lib
+%doc %{geminstdir}/LICENSE
+%doc %{geminstdir}/README.rdoc
+%doc %{geminstdir}/History.rdoc
+%doc %{geminstdir}/VERSION.yml
+%{gemdir}/cache/%{gemname}-%{version}.gem
+%{gemdir}/specifications/%{gemname}-%{version}.gemspec
+
+%files doc
+%defattr(-, root, root, -)
+%{geminstdir}/test
+%{geminstdir}/Rakefile
+%{gemdir}/doc/%{gemname}-%{version}
+
+%changelog
+* Thu Nov 09 2010 Michal Fojtik <mfojtik at redhat.com> - 0.3.5-2
+- Disabled test_time_stack_item test
+
+* Thu Oct 14 2010 Michal Fojtik <mfojtik at redhat.com> - 0.3.5-1
+- Initial package
diff --git a/sources b/sources
index e69de29..545b2ab 100644
--- a/sources
+++ b/sources
@@ -0,0 +1,2 @@
+41f2cd015c3e382456dcb21ab9256eba  rubygem-timecop-failed-assert-fix.patch
+d2043669f11eca7fabaa0b222250b942  timecop-0.3.5.gem


More information about the scm-commits mailing list