From 98bcaea50b972d79ffba3b8ca2a713aedd3d7af0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=20Ondruch?= Date: Fri, 11 Nov 2011 16:35:16 +0100 Subject: [PATCH] Removed useless shebang. --- rubygem-multi_json.spec | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/rubygem-multi_json.spec b/rubygem-multi_json.spec index 883a8b9..922f7f8 100644 --- a/rubygem-multi_json.spec +++ b/rubygem-multi_json.spec @@ -8,7 +8,7 @@ Summary: A gem to provide swappable JSON backends Name: rubygem-%{gemname} Version: 1.0.3 -Release: 2%{?dist} +Release: 3%{?dist} Group: Development/Languages License: MIT URL: http://github.com/intridea/multi_json @@ -57,6 +57,9 @@ mkdir -p %{buildroot}%{gemdir} cp -a .%{gemdir}/* \ %{buildroot}%{gemdir}/ +# Remove useless shebang. +sed -i -e '/^#!\/usr\/bin\/env/d' %{buildroot}%{geminstdir}/Rakefile + %check pushd ./%{geminstdir} # simplecov gem is Ruby 1.9 only and not available in Fedora, @@ -86,6 +89,9 @@ popd %changelog +* Fri Nov 11 2011 Vít Ondruch - 1.0.3-3 +- Removed useless shebang. + * Fri Nov 11 2011 Vít Ondruch - 1.0.3-2 - Review fixes.