[rubygem-rspec-expectations] Initial import

Mamoru Tasaka mtasaka at fedoraproject.org
Fri Feb 25 18:03:13 UTC 2011


commit a3fa8e12f9912bdc067791af11a69d26094b6db1
Author: Mamoru Tasaka <tasaka1 at localhost.localdomain>
Date:   Sat Feb 26 03:03:02 2011 +0900

    Initial import

 .gitignore                      |    1 +
 rubygem-rspec-expectations.spec |  111 +++++++++++++++++++++++++++++++++++++++
 sources                         |    1 +
 3 files changed, 113 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..2c0cea2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/rspec-expectations-2.5.0.gem
diff --git a/rubygem-rspec-expectations.spec b/rubygem-rspec-expectations.spec
new file mode 100644
index 0000000..f770be5
--- /dev/null
+++ b/rubygem-rspec-expectations.spec
@@ -0,0 +1,111 @@
+%global	gemdir		%(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null)
+%global	gemname	rspec-expectations
+%global	geminstdir	%{gemdir}/gems/%{gemname}-%{version}
+
+%global	rubyabi	1.8
+
+# %%check section needs rspec-core, however rspec-core depends on rspec-expectations
+# runtime part of rspec-expectaions does not depend on rspec-core
+%global	need_bootstrap_set	1
+%if 0%{?fedora} >= 16
+%global	need_bootstrap_set	1
+%endif
+
+%{!?need_bootstrap:	%global	need_bootstrap	%{need_bootstrap_set}}
+
+Summary:	Rspec-2 expectations (should and matchers) 
+Name:		rubygem-%{gemname}
+Version:	2.5.0
+Release:	1%{?dist}
+
+Group:		Development/Languages
+License:	MIT
+URL:		http://github.com/rspec/rspec-expectations
+Source0:	http://rubygems.org/gems/%{gemname}-%{version}.gem
+
+BuildRequires:	ruby(abi) = %{rubyabi}
+BuildRequires:	rubygems
+%if 0%{?need_bootstrap} < 1
+BuildRequires:	rubygem(rspec-core)
+%endif
+Requires:	ruby(abi) = %{rubyabi}
+Requires:	rubygem(diff-lcs)
+Provides:	rubygem(%{gemname}) = %{version}-%{release}
+BuildArch:	noarch
+
+%description
+rspec-expectations adds `should` and `should_not` to every object and includes
+RSpec::Matchers, a library of standard matchers.
+
+%package	doc
+Summary:	Documentation for %{name}
+Group:		Documentation
+Requires:	%{name} = %{version}-%{release}
+
+%description	doc
+This package contains documentation for %{name}.
+
+
+%prep
+%setup -q -c -T
+
+mkdir -p .%{gemdir}
+gem install \
+	-V \
+	--local \
+	--install-dir .%{gemdir} \
+	--force \
+	--rdoc \
+	%{SOURCE0}
+
+chmod 0644 .%{gemdir}/cache/%{gemname}-%{version}.gem
+
+%build
+
+%install
+mkdir -p %{buildroot}%{gemdir}
+cp -a .%{gemdir}/* %{buildroot}%{gemdir}/
+
+# cleanups
+rm -f %{buildroot}%{geminstdir}/{.document,.gitignore}
+
+%if 0%{?need_bootstrap} < 1
+%check
+pushd .%{geminstdir}
+ruby -rubygems -Ilib/ -S rspec spec/
+popd
+%endif
+
+%files
+%defattr(-,root,root,-)
+%dir	%{geminstdir}
+
+%doc	%{geminstdir}/License.txt
+%doc	%{geminstdir}/*.md
+%{geminstdir}/lib/
+
+%{gemdir}/cache/%{gemname}-%{version}.gem
+%{gemdir}/specifications/%{gemname}-%{version}.gemspec
+
+
+%files	doc
+%defattr(-,root,root,-)
+%{gemdir}/doc/%{gemname}-%{version}
+%{geminstdir}/Gemfile
+%{geminstdir}/Guardfile
+%{geminstdir}/Rakefile
+%{geminstdir}/cucumber.yml
+%{geminstdir}/%{gemname}.gemspec
+%{geminstdir}/specs.watchr
+%{geminstdir}/features/
+%{geminstdir}/spec/
+
+%changelog
+* Sat Feb 26 2011 Mamoru Tasaka <mtasaka at fedoraproject.org> - 2.5.0-2
+- Cleanups
+
+* Thu Feb 17 2011 Mamoru Tasaka <mtasaka at ioa.s.u-tokyo.ac.jp> - 2.5.0-1
+- 2.5.0
+
+* Fri Nov 05 2010 Mamoru Tasaka <mtasaka at ioa.s.u-tokyo.ac.jp> - 2.0.1-1
+- Initial package
diff --git a/sources b/sources
index e69de29..58d6646 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+8a37e6361e8d9c59d8844dc50370fa27  rspec-expectations-2.5.0.gem


More information about the scm-commits mailing list