diff --git a/rubygem-spring.spec b/rubygem-spring.spec new file mode 100644 index 0000000000000000000000000000000000000000..daf4fe9c89e2957cb9f24ebf72245acfd14b7cd9 --- /dev/null +++ b/rubygem-spring.spec @@ -0,0 +1,69 @@ +%global gem_name spring +Name: rubygem-%{gem_name} +Version: 2.0.0 +Release: 1 +Summary: Rails application preloader +License: MIT +URL: https://github.com/rails/spring +Source0: https://rubygems.org/gems/spring-%{version}.gem +Source1: https://github.com/rails/spring/archive/v%{version}.tar.gz +Requires: ruby(release) ruby(rubygems) %{_bindir}/ps +BuildRequires: ruby(release) rubygems-devel rubygem(minitest) rubygem(bundler) +BuildRequires: rubygem(activesupport) +BuildArch: noarch +Provides: bundled(okjson) = 43 +%description +Spring is a Rails application preloader. It speeds up development by keeping +your application running in the background so you don't need to boot it every +time you run a test, rake task or migration. + +%package help +Summary: Documentation for %{name} +Requires: %{name} = %{version}-%{release} +BuildArch: noarch +Provides: %{name}-doc = %{version}-%{release} +Obsoletes: %{name}-doc < %{version}-%{release} +%description help +Documentation for %{name} + +%prep +gem unpack %{SOURCE0} +%setup -q -D -T -n %{gem_name}-%{version} +gem spec %{SOURCE0} -l --ruby > %{gem_name}.gemspec + +%build +gem build %{gem_name}.gemspec +%gem_install + +%install +mkdir -p %{buildroot}%{gem_dir} +cp -pa .%{gem_dir}/* \ + %{buildroot}%{gem_dir}/ +mkdir -p %{buildroot}%{_bindir} +cp -pa .%{_bindir}/* \ + %{buildroot}%{_bindir}/ +find %{buildroot}%{gem_instdir}/bin -type f | xargs chmod a+x + +%check +pushd .%{gem_instdir} +tar xf %{SOURCE1} +cd %{gem_name}-%{version} +ruby -Ilib:test -e 'Dir.glob "./test/unit/**/*_test.rb", &method(:require)' +popd + +%files +%dir %{gem_instdir} +%{_bindir}/spring +%{gem_instdir}/bin +%{gem_libdir} +%exclude %{gem_cache} +%{gem_spec} +%license %{gem_instdir}/LICENSE.txt + +%files help +%doc %{gem_docdir} +%doc %{gem_instdir}/README.md + +%changelog +* Sat Aug 22 2020 liyanan - 2.0.0-1 +- package init diff --git a/rubygem-spring.yaml b/rubygem-spring.yaml new file mode 100644 index 0000000000000000000000000000000000000000..18a0b12c17488b306915368fb1e6a60d2320085f --- /dev/null +++ b/rubygem-spring.yaml @@ -0,0 +1,5 @@ +git_url: https://github.com/rails/spring.git +version_control: github +src_repo: rails/spring +tag_prefix: "^v" +seperator: "." diff --git a/spring-2.0.0.gem b/spring-2.0.0.gem new file mode 100644 index 0000000000000000000000000000000000000000..c94c25daf834b025dcf6515c9a2d185ae0f58527 Binary files /dev/null and b/spring-2.0.0.gem differ diff --git a/v2.0.0.tar.gz b/v2.0.0.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..26745fa484ade5afc13c4ceea2b9c532f2f78c8d Binary files /dev/null and b/v2.0.0.tar.gz differ