Update to 1.0.0

This commit is contained in:
caodongxia 2022-10-26 11:47:28 +08:00
parent 66aa36e3ab
commit 67c8fc836e
3 changed files with 9 additions and 5 deletions

Binary file not shown.

BIN
pry-nav-1.0.0.gem Normal file

Binary file not shown.

View File

@ -1,13 +1,13 @@
%global gem_name pry-nav %global gem_name pry-nav
Name: rubygem-%{gem_name} Name: rubygem-%{gem_name}
Version: 0.3.0 Version: 1.0.0
Release: 2 Release: 1
Summary: Simple execution navigation for Pry Summary: Simple execution navigation for Pry
License: MIT License: MIT
URL: https://github.com/nixme/pry-nav URL: https://github.com/nixme/pry-nav
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem
BuildArch: noarch BuildArch: noarch
BuildRequires: ruby(release) rubygems-devel ruby >= 1.8.7 BuildRequires: ruby(release) rubygems-devel ruby >= 1.8.7 rubygem-pry
%description %description
Turn Pry into a primitive debugger. Adds 'step' and 'next' commands to control Turn Pry into a primitive debugger. Adds 'step' and 'next' commands to control
execution. execution.
@ -22,8 +22,6 @@ Documentation for %{name}.
%prep %prep
%setup -q -n %{gem_name}-%{version} %setup -q -n %{gem_name}-%{version}
%gemspec_remove_dep -g pry "< 0.13.0"
%build %build
gem build ../%{gem_name}-%{version}.gemspec gem build ../%{gem_name}-%{version}.gemspec
%gem_install %gem_install
@ -47,8 +45,14 @@ cp -a .%{gem_dir}/* %{buildroot}%{gem_dir}/
%doc %{gem_instdir}/README.md %doc %{gem_instdir}/README.md
%{gem_instdir}/Gemfile %{gem_instdir}/Gemfile
%exclude %{gem_instdir}/Rakefile %exclude %{gem_instdir}/Rakefile
%exclude %{gem_instdir}/test/*
%exclude %{gem_instdir}/.ruby-version
%exclude %{gem_instdir}/.github/workflows/main.yml
%changelog %changelog
* Wed Oct 26 2022 caodongxia <caodongxia@h-partners.com> - 1.0.0-1
- Update to 1.0.0
* Fri Mar 4 2022 yanan li <liyanan32@huawei.com> - 0.3.0-2 * Fri Mar 4 2022 yanan li <liyanan32@huawei.com> - 0.3.0-2
- Relax rubygem-pry dependency. - Relax rubygem-pry dependency.