[rubygem-metaclass] Initial import (#742935).

Vít Ondruch vondruch at fedoraproject.org
Tue Oct 4 12:57:24 UTC 2011


commit 6f44b3901a3baf7acc868c73e371ba4145826daa
Author: Vít Ondruch <vondruch at redhat.com>
Date:   Mon Oct 3 14:34:52 2011 +0200

    Initial import (#742935).

 .gitignore             |    1 +
 rubygem-metaclass.spec |   79 ++++++++++++++++++++++++++++++++++++++++++++++++
 sources                |    1 +
 3 files changed, 81 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..a78bf06 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/metaclass-0.0.1.gem
diff --git a/rubygem-metaclass.spec b/rubygem-metaclass.spec
new file mode 100644
index 0000000..2d46b89
--- /dev/null
+++ b/rubygem-metaclass.spec
@@ -0,0 +1,79 @@
+# Generated from metaclass-0.0.1.gem by gem2rpm -*- rpm-spec -*-
+%global gemname metaclass
+
+%global gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null)
+%global geminstdir %{gemdir}/gems/%{gemname}-%{version}
+%global rubyabi 1.8
+
+Summary: Adds a metaclass method to all Ruby objects
+Name: rubygem-%{gemname}
+Version: 0.0.1
+Release: 1%{?dist}
+Group: Development/Languages
+License: MIT and Ruby
+URL: http://github.com/floehopper/metaclass
+Source0: http://rubygems.org/gems/%{gemname}-%{version}.gem
+Requires: ruby(abi) = %{rubyabi}
+Requires: ruby(rubygems)
+Requires: ruby
+BuildRequires: ruby(abi) = %{rubyabi}
+BuildRequires: ruby(rubygems)
+BuildRequires: ruby
+BuildArch: noarch
+Provides: rubygem(%{gemname}) = %{version}
+
+%description
+Adds a metaclass method to all Ruby objects
+
+
+%package doc
+Summary: Documentation for %{name}
+Group: Documentation
+Requires: %{name} = %{version}-%{release}
+BuildArch: noarch
+
+%description doc
+Documentation for %{name}
+
+
+%prep
+%setup -q -c -T
+mkdir -p .%{gemdir}
+gem install --local --install-dir .%{gemdir} \
+            --force %{SOURCE0}
+
+%build
+
+%install
+mkdir -p %{buildroot}%{gemdir}
+cp -a .%{gemdir}/* \
+        %{buildroot}%{gemdir}/
+
+%check
+pushd .%{geminstdir}
+# test_helper.rb currently references bundler, so it is easier to avoid
+# its usage at all.
+sed -i '1,1d' test/object_methods_test.rb
+RUBYOPT="-Ilib -rmetaclass" testrb test/object_methods_test.rb
+popd
+
+
+%files
+%dir %{geminstdir}
+%exclude %{geminstdir}/.gitignore
+%{geminstdir}/README.md
+%exclude %{geminstdir}/metaclass.gemspec
+%{geminstdir}/lib
+%{geminstdir}/test
+%exclude %{gemdir}/cache/%{gemname}-%{version}.gem
+%{gemdir}/specifications/%{gemname}-%{version}.gemspec
+
+%files doc
+%{geminstdir}/Gemfile
+%{geminstdir}/Rakefile
+%doc %{gemdir}/doc/%{gemname}-%{version}
+
+
+%changelog
+* Mon Oct 03 2011 Vít Ondruch <vondruch at redhat.com> - 0.0.1-1
+- Initial package
diff --git a/sources b/sources
index e69de29..e6ccff0 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+563290373717a06691561ed1b5786a1b  metaclass-0.0.1.gem


More information about the scm-commits mailing list