Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a1be6ee779 |
6 changed files with 119 additions and 314 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -1,3 +1 @@
|
||||||
/yard-*.gem
|
yard-0.5.3.gem
|
||||||
/yard-*-spec.txz
|
|
||||||
/yard-*-test-missing-files.tar.gz
|
|
||||||
|
|
|
||||||
|
|
@ -1,48 +1,30 @@
|
||||||
%global gem_name yard
|
%define gemdir %(ruby -rubygems -e 'puts Gem::dir' 2>/dev/null)
|
||||||
|
%define gemname yard
|
||||||
|
%define geminstdir %{gemdir}/gems/%{gemname}-%{version}
|
||||||
|
|
||||||
Name: rubygem-%{gem_name}
|
%define rubyabi 1.8
|
||||||
Version: 0.9.38
|
|
||||||
Release: 2%{?dist}
|
|
||||||
|
|
||||||
Summary: Documentation tool for consistent and usable documentation in Ruby
|
Name: rubygem-%{gemname}
|
||||||
|
Summary: Documentation tool for consistent and usable documentation in Ruby
|
||||||
|
Version: 0.5.3
|
||||||
|
Release: 4%{?dist}
|
||||||
|
Group: Development/Languages
|
||||||
|
License: MIT and (GPLv2 or Ruby)
|
||||||
|
URL: http://yardoc.org
|
||||||
|
|
||||||
# lib/yard/parser/ruby/legacy/ruby_lex.rb: under GPL-2.0-only OR Ruby
|
Source0: http://gemcutter.org/downloads/%{gemname}-%{version}.gem
|
||||||
# lib/yard/rubygems/backports/: MIT OR Ruby
|
|
||||||
# lib/yard/server/http_utils.rb: BSD 2-Clause
|
|
||||||
# lib/yard/server/templates/default/fulldoc/html/js/autocomplete.js:
|
|
||||||
# MIT OR GPL(version 2??), as this is OR, use MIT for now
|
|
||||||
# Others are MIT
|
|
||||||
# SPDX confirmed
|
|
||||||
License: MIT AND (MIT OR Ruby) AND BSD-2-Clause AND (GPL-2.0-only OR Ruby)
|
|
||||||
|
|
||||||
URL: http://yardoc.org
|
# fix for https://github.com/lsegal/yard/issues/272
|
||||||
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem
|
# https://github.com/postmodern/yard/commit/f4075ea5ddb3bb85bb79408e4128c877c166a69e
|
||||||
Source1: %{gem_name}-%{version}-test-missing-files.tar.gz
|
Patch0: yard-rubygems-17-support.patch
|
||||||
# Source1 is created by $ bash %%SOURCE2 %%version
|
Requires: rubygems
|
||||||
Source2: yard-create-missing-test-files.sh
|
Requires: ruby(abi) = %{rubyabi}
|
||||||
# https://github.com/lsegal/yard/issues/1637
|
BuildRequires: rubygems
|
||||||
# Fix spec testsuite with namespace collision
|
BuildRequires: rubygem(rake)
|
||||||
Patch0: yard-0.9.38-issue1637-spec-namespace-collision.patch
|
BuildRequires: rubygem(rspec)
|
||||||
|
BuildRequires: rubygem(RedCloth)
|
||||||
# The 'irb/notifier' might be required for parsing of some old Ruby code.
|
BuildArch: noarch
|
||||||
# https://github.com/lsegal/yard/blob/v0.9.24/lib/yard/parser/ruby/legacy/irb/slex.rb#L13
|
Provides: rubygem(%{gemname}) = %{version}
|
||||||
Recommends: rubygem(irb)
|
|
||||||
|
|
||||||
BuildRequires: ruby(release)
|
|
||||||
BuildRequires: rubygems-devel
|
|
||||||
BuildRequires: ruby
|
|
||||||
BuildRequires: rubygem(RedCloth)
|
|
||||||
BuildRequires: rubygem(asciidoctor)
|
|
||||||
BuildRequires: rubygem(bundler)
|
|
||||||
BuildRequires: rubygem(irb)
|
|
||||||
BuildRequires: rubygem(rack)
|
|
||||||
BuildRequires: /usr/bin/rackup
|
|
||||||
BuildRequires: rubygem(rake)
|
|
||||||
BuildRequires: rubygem(redcarpet)
|
|
||||||
BuildRequires: rubygem(rspec)
|
|
||||||
BuildRequires: rubygem(webrick)
|
|
||||||
|
|
||||||
BuildArch: noarch
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
YARD is a documentation generation tool for the Ruby programming language.
|
YARD is a documentation generation tool for the Ruby programming language.
|
||||||
|
|
@ -51,239 +33,61 @@ exported to a number of formats very easily, and also supports extending for
|
||||||
custom Ruby constructs such as custom class level definitions.
|
custom Ruby constructs such as custom class level definitions.
|
||||||
|
|
||||||
|
|
||||||
%package doc
|
|
||||||
Summary: Documentation for %{name}
|
|
||||||
Requires: %{name} = %{version}-%{release}
|
|
||||||
BuildArch: noarch
|
|
||||||
|
|
||||||
%description doc
|
|
||||||
Documentation for %{name}.
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{gem_name}-%{version} -b1
|
%setup -q -T -c
|
||||||
%patch -P0 -p1
|
%{__mkdir_p} .%{gemdir}
|
||||||
mv ../%{gem_name}-%{version}.gemspec .
|
# FIXME rdoc generation doesn't work w/
|
||||||
|
# the yard/rdoc version on F15
|
||||||
|
gem install --local --install-dir .%{gemdir} \
|
||||||
|
--force -V --no-rdoc --no-ri %{SOURCE0}
|
||||||
|
|
||||||
%build
|
pushd .%{geminstdir}
|
||||||
gem build ./%{gem_name}-%{version}.gemspec
|
%patch0
|
||||||
%gem_install
|
|
||||||
|
|
||||||
%install
|
|
||||||
mkdir -p %{buildroot}%{gem_dir}
|
|
||||||
cp -a .%{gem_dir}/* \
|
|
||||||
%{buildroot}%{gem_dir}/
|
|
||||||
|
|
||||||
pushd %{buildroot}%{gem_instdir}
|
|
||||||
rm -rf .yardopts* \
|
|
||||||
%{nil}
|
|
||||||
popd
|
popd
|
||||||
|
|
||||||
mkdir -p %{buildroot}%{_bindir}
|
|
||||||
cp -a .%{_bindir}/* \
|
|
||||||
%{buildroot}%{_bindir}/
|
|
||||||
|
|
||||||
find %{buildroot}%{gem_instdir}/bin -type f | xargs chmod 0755
|
%build
|
||||||
rm -f %{buildroot}%{gem_cache}
|
|
||||||
|
%install
|
||||||
|
mkdir -p %{buildroot}%{gemdir}
|
||||||
|
mv .%{gemdir}/* %{buildroot}%{gemdir}
|
||||||
|
|
||||||
|
mkdir -p %{buildroot}/%{_bindir}
|
||||||
|
mv %{buildroot}%{gemdir}/bin/* %{buildroot}/%{_bindir}
|
||||||
|
rmdir %{buildroot}%{gemdir}/bin
|
||||||
|
find %{buildroot}%{geminstdir}/bin -type f | xargs chmod a+x
|
||||||
|
|
||||||
%check
|
%check
|
||||||
# FIXME
|
pushd %{buildroot}%{geminstdir}
|
||||||
# investigate this: was okay with yard 0.9.28
|
rake spec
|
||||||
sed -i spec/cli/diff_spec.rb \
|
|
||||||
-e '\@"searches for .gem file"@s|\([ \t]it \)|\txit |'
|
|
||||||
rspec -r spec_helper spec
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%dir %{gem_instdir}
|
|
||||||
%license %{gem_instdir}/LEGAL
|
|
||||||
%license %{gem_instdir}/LICENSE
|
|
||||||
%doc %{gem_instdir}/CHANGELOG.md
|
|
||||||
%doc %{gem_instdir}/README.md
|
|
||||||
|
|
||||||
%{_bindir}/yard
|
|
||||||
%{_bindir}/yardoc
|
%{_bindir}/yardoc
|
||||||
%{_bindir}/yri
|
%{_bindir}/yri
|
||||||
|
%{_bindir}/yard-graph
|
||||||
|
%dir %{geminstdir}
|
||||||
|
%{geminstdir}/bin
|
||||||
|
%{geminstdir}/lib
|
||||||
|
%{geminstdir}/templates
|
||||||
|
%{geminstdir}/.yardopts
|
||||||
|
%{geminstdir}/.yardoc
|
||||||
|
|
||||||
%{gem_libdir}/
|
%{gemdir}/cache/%{gemname}-%{version}.gem
|
||||||
%{gem_instdir}/bin
|
%{gemdir}/specifications/%{gemname}-%{version}.gemspec
|
||||||
%{gem_instdir}/po/
|
|
||||||
%{gem_instdir}/templates/
|
|
||||||
|
|
||||||
%{gem_spec}
|
%doc %{geminstdir}/LICENSE
|
||||||
%{?gem_plugin}
|
%doc %{geminstdir}/README.md
|
||||||
|
%doc %{geminstdir}/Rakefile
|
||||||
|
%doc %{geminstdir}/ChangeLog
|
||||||
|
%doc %{geminstdir}/benchmarks
|
||||||
|
%doc %{geminstdir}/spec
|
||||||
|
%doc %{geminstdir}/docs
|
||||||
|
|
||||||
%files doc
|
|
||||||
%doc %{gem_docdir}
|
|
||||||
%doc %{gem_instdir}/docs/
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Jan 02 2026 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.9.38-2
|
* Mon Jul 25 2011 Mo Morsi <mmorsi@redhat.com> - 0.5.3-4
|
||||||
- Fix spec testsuite failure with namespace collision
|
- integrated fix for upstream issue 272
|
||||||
|
- temp disabled rdoc generation as that is not working on F15
|
||||||
* Mon Dec 08 2025 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.9.38-1
|
|
||||||
- 0.9.38
|
|
||||||
|
|
||||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.37-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jun 10 2025 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.9.37-3
|
|
||||||
- BR: /usr/bin/rackup for rack / rackup gem split (bug 2371181)
|
|
||||||
|
|
||||||
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.37-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Sep 05 2024 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.9.37-1
|
|
||||||
- 0.9.37
|
|
||||||
|
|
||||||
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.36-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Mar 01 2024 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.9.36-1
|
|
||||||
- 0.9.36 (Fixes CVE-2024-27285)
|
|
||||||
|
|
||||||
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.34-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Nov 10 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.9.34-4
|
|
||||||
- Testsuite: remove invalid yield usage from spec (for ruby3.3)
|
|
||||||
|
|
||||||
* Mon Sep 25 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.9.34-3
|
|
||||||
- Backport upstream patch for BOM detection change in ruby33
|
|
||||||
|
|
||||||
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.34-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Apr 13 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.9.34-1
|
|
||||||
- 0.9.34
|
|
||||||
|
|
||||||
* Wed Apr 12 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.9.33-1
|
|
||||||
- 0.9.33
|
|
||||||
|
|
||||||
* Mon Apr 10 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.9.32-1
|
|
||||||
- 0.9.32
|
|
||||||
|
|
||||||
* Sun Apr 9 2023 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.9.29-1
|
|
||||||
- 0.9.29
|
|
||||||
- Whitespace cleanup
|
|
||||||
- SPDX migration
|
|
||||||
|
|
||||||
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.28-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Aug 08 2022 Vít Ondruch <vondruch@redhat.com> - 0.9.28-1
|
|
||||||
- Update to YARD 0.9.28.
|
|
||||||
Resolves: rhbz#2027537
|
|
||||||
Resolves: rhbz#2113713
|
|
||||||
|
|
||||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.26-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.26-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.26-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Apr 06 2021 Vít Ondruch <vondruch@redhat.com> - 0.9.26-3
|
|
||||||
- Add `BR: rubygem(irb)`, which was previosly pulled in indirectly.
|
|
||||||
|
|
||||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.26-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Dec 18 02:42:33 CET 2020 Pavel Valena <pvalena@redhat.com> - 0.9.26-1
|
|
||||||
- Update to yard 0.9.26.
|
|
||||||
Resolves: rhbz#1830795
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_3.0
|
|
||||||
|
|
||||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.24-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Feb 04 2020 Vít Ondruch <vondruch@redhat.com> - 0.9.24-1
|
|
||||||
- Update to YARD 0.9.24.
|
|
||||||
|
|
||||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.12-7
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.12-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.12-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.12-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Mar 29 2018 Vít Ondruch <vondruch@redhat.com> - 0.9.12-3
|
|
||||||
- Fix FTBFS due to failing test suite (rhbz#1556422).
|
|
||||||
|
|
||||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.12-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Dec 01 2017 Vít Ondruch <vondruch@redhat.com> - 0.9.12-1
|
|
||||||
- Update to YARD 0.9.12.
|
|
||||||
|
|
||||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.8-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.8-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jan 30 2017 Vít Ondruch <vondruch@redhat.com> - 0.9.8-1
|
|
||||||
- Update to YARD 0.9.8.
|
|
||||||
|
|
||||||
* Wed May 25 2016 Jun Aruga <jaruga@redhat.com> - 0.8.7.6-3
|
|
||||||
- Fix test suite for Ruby 2.3 compatibility. (rhbz#1308100)
|
|
||||||
|
|
||||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.7.6-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 08 2015 Vít Ondruch <vondruch@redhat.com> - 0.8.7.6-1
|
|
||||||
- Update to YARD 0.8.7.6.
|
|
||||||
|
|
||||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.7.4-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jul 03 2014 Vít Ondruch <vondruch@redhat.com> - 0.8.7.4-1
|
|
||||||
- Update to yard 0.8.7.4.
|
|
||||||
|
|
||||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.7-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Aug 14 2013 Vít Ondruch <vondruch@redhat.com> - 0.8.7-1
|
|
||||||
- Update to yard 0.8.7.
|
|
||||||
|
|
||||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.5.2-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Mar 15 2013 Vít Ondruch <vondruch@redhat.com> - 0.8.5.2-1
|
|
||||||
- Update to yard 0.8.5.2.
|
|
||||||
|
|
||||||
* Fri Mar 15 2013 Vít Ondruch <vondruch@redhat.com> - 0.8.2.1-3
|
|
||||||
- Rebuild for https://fedoraproject.org/wiki/Features/Ruby_2.0.0
|
|
||||||
|
|
||||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.2.1-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 27 2012 Vít Ondruch <vondruch@redhat.com> - 0.8.2.1-1
|
|
||||||
- Update to yard 0.8.2.1.
|
|
||||||
|
|
||||||
* Thu May 03 2012 Vít Ondruch <vondruch@redhat.com> - 0.8.1-1
|
|
||||||
- Update to yard 0.8.1.
|
|
||||||
|
|
||||||
* Wed Jan 25 2012 Vít Ondruch <vondruch@redhat.com> - 0.7.4-3
|
|
||||||
- Rebuilt for Ruby 1.9.3.
|
|
||||||
|
|
||||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.4-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Dec 15 2011 Vít Ondruch <vondruch@redhat.com> - 0.7.4-1
|
|
||||||
- Updated to yard 0.7.4.
|
|
||||||
|
|
||||||
* Mon Jul 25 2011 Mo Morsi <mmorsi@redhat.com> - 0.7.2-1
|
|
||||||
- update to latest upstream release
|
|
||||||
- fixes to conform to fedora guidelines
|
|
||||||
|
|
||||||
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org>
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Feb 22 2010 Mohammed Morsi <mmorsi@redhat.com> - 0.5.3-3
|
* Mon Feb 22 2010 Mohammed Morsi <mmorsi@redhat.com> - 0.5.3-3
|
||||||
- fixed dependencies/package issues according to guidelines
|
- fixed dependencies/package issues according to guidelines
|
||||||
|
|
|
||||||
3
sources
3
sources
|
|
@ -1,2 +1 @@
|
||||||
SHA512 (yard-0.9.38.gem) = af69f50fb7ce065adc8b387c93327ee9001fd2526ddce9381d883c4aa9f1518e895a2128623956210509c2c0528700cab91c4fcb30c0c88802e9007d5c5b43f2
|
5bf1e34356d0803203ddf97d03fdf0e3 yard-0.5.3.gem
|
||||||
SHA512 (yard-0.9.38-test-missing-files.tar.gz) = 08084b435ebbccf7fb85707c243d7a6e5be21f09188b05ebe50e41b897e34cb32d2310423567a89aef205ef2db5bfdfa7e334a1f2f61013132112331bce6df08
|
|
||||||
|
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
||||||
diff --git a/spec/tags/types_explainer_spec.rb b/spec/tags/types_explainer_spec.rb
|
|
||||||
index de7454d3..5eb72d47 100644
|
|
||||||
--- a/spec/tags/types_explainer_spec.rb
|
|
||||||
+++ b/spec/tags/types_explainer_spec.rb
|
|
||||||
@@ -5,10 +5,9 @@ RSpec.describe YARD::Tags::TypesExplainer do
|
|
||||||
CollectionType = YARD::Tags::TypesExplainer::CollectionType
|
|
||||||
FixedCollectionType = YARD::Tags::TypesExplainer::FixedCollectionType
|
|
||||||
HashCollectionType = YARD::Tags::TypesExplainer::HashCollectionType
|
|
||||||
- Parser = YARD::Tags::TypesExplainer::Parser
|
|
||||||
|
|
||||||
def parse(types)
|
|
||||||
- Parser.new(types).parse
|
|
||||||
+ YARD::Tags::TypesExplainer::Parser.new(types).parse
|
|
||||||
end
|
|
||||||
|
|
||||||
def parse_fail(types)
|
|
||||||
|
|
@ -1,35 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
usage() {
|
|
||||||
echo "$0 <VERSION>"
|
|
||||||
}
|
|
||||||
|
|
||||||
set -e
|
|
||||||
set -x
|
|
||||||
|
|
||||||
if [ $# -lt 1 ] ; then
|
|
||||||
usage
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
VERSION=$1
|
|
||||||
|
|
||||||
GEMNAME=yard
|
|
||||||
TMPDIR=$(mktemp -d /tmp/${GEMNAME}-XXXXXX)
|
|
||||||
CURDIR=$(pwd)
|
|
||||||
GITTOPDIR=${GEMNAME}-${VERSION}
|
|
||||||
|
|
||||||
pushd $TMPDIR
|
|
||||||
|
|
||||||
git clone http://github.com/lsegal/${GEMNAME} ${GITTOPDIR}
|
|
||||||
cd ${GEMNAME}-$VERSION
|
|
||||||
|
|
||||||
git checkout -b fedora-$VERSION v$VERSION
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
tar czf $CURDIR/${GEMNAME}-${VERSION}-test-missing-files.tar.gz \
|
|
||||||
${GITTOPDIR}/spec/ \
|
|
||||||
|
|
||||||
popd
|
|
||||||
rm -rf $TMPDIR
|
|
||||||
|
|
||||||
55
yard-rubygems-17-support.patch
Normal file
55
yard-rubygems-17-support.patch
Normal file
|
|
@ -0,0 +1,55 @@
|
||||||
|
--- Rakefile.orig 2011-07-25 15:55:31.332414239 -0400
|
||||||
|
+++ Rakefile 2011-07-25 15:57:04.953215913 -0400
|
||||||
|
@@ -1,4 +1,5 @@
|
||||||
|
require File.dirname(__FILE__) + '/lib/yard'
|
||||||
|
+require File.dirname(__FILE__) + '/lib/rubygems_plugin'
|
||||||
|
|
||||||
|
WINDOWS = (RUBY_PLATFORM =~ /win32|cygwin/ ? true : false) rescue false
|
||||||
|
SUDO = WINDOWS ? '' : 'sudo'
|
||||||
|
--- lib/rubygems_plugin.rb.orig 2011-08-01 13:23:11.000000000 -0400
|
||||||
|
+++ lib/rubygems_plugin.rb 2011-08-01 13:26:09.000000000 -0400
|
||||||
|
@@ -1,13 +1,10 @@
|
||||||
|
require 'rubygems/specification'
|
||||||
|
+require 'rubygems/user_interaction'
|
||||||
|
require 'rubygems/doc_manager'
|
||||||
|
|
||||||
|
class Gem::Specification
|
||||||
|
- # has_rdoc should not be ignored!
|
||||||
|
- overwrite_accessor(:has_rdoc) { @has_rdoc }
|
||||||
|
- overwrite_accessor(:has_rdoc=) {|v| @has_rdoc = v }
|
||||||
|
-
|
||||||
|
def has_yardoc=(value)
|
||||||
|
- @has_rdoc = 'yard'
|
||||||
|
+ @has_rdoc = value ? 'yard' : false
|
||||||
|
end
|
||||||
|
|
||||||
|
def has_yardoc
|
||||||
|
@@ -20,6 +17,28 @@ class Gem::Specification
|
||||||
|
end
|
||||||
|
|
||||||
|
alias has_yardoc? has_yardoc
|
||||||
|
+
|
||||||
|
+ # has_rdoc should not be ignored!
|
||||||
|
+ if respond_to?(:overwrite_accessor)
|
||||||
|
+ overwrite_accessor(:has_rdoc) { @has_rdoc }
|
||||||
|
+ overwrite_accessor(:has_rdoc=) {|v| @has_rdoc = v }
|
||||||
|
+ else
|
||||||
|
+ attr_accessor :has_rdoc
|
||||||
|
+ end
|
||||||
|
+
|
||||||
|
+ if defined?(Gem::VERSION) && Gem::VERSION =~ /^1\.7\./
|
||||||
|
+ def _dump_with_rdoc(limit)
|
||||||
|
+ dmp = _dump_without_rdoc(limit)
|
||||||
|
+ dmp[15] = @has_rdoc
|
||||||
|
+ dmp
|
||||||
|
+ end
|
||||||
|
+ alias _dump_without_rdoc _dump
|
||||||
|
+ alias _dump _dump_with_rdoc
|
||||||
|
+
|
||||||
|
+ @@default_value[:has_rdoc] = true if defined?(@@default_value)
|
||||||
|
+ @@attributes << 'has_rdoc' if defined?(@@attributes)
|
||||||
|
+ @@non_nil_attributes << 'has_rdoc' if defined?(@@non_nil_attributes)
|
||||||
|
+ end
|
||||||
|
end
|
||||||
|
|
||||||
|
unless defined? Gem::DocManager.load_yardoc
|
||||||
Loading…
Add table
Add a link
Reference in a new issue