# Generated from syncem-0.1.2.gem by gem2rpm -*- rpm-spec -*- %global gem_name syncem Name: rubygem-%{gem_name} Version: 0.1.2 Release: 1%{?dist} Summary: Thread-safe decorator of Ruby objects License: MIT URL: http://github.com/yegor256/syncem Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem BuildRequires: ruby(release) BuildRequires: rubygems-devel BuildRequires: ruby >= 2.3 # BuildRequires: rubygem(minitest) = 5.11.3 # BuildRequires: rubygem(rubocop) = 0.62.0 # BuildRequires: rubygem(rubocop-rspec) = 1.31.0 # BuildRequires: rubygem(threads) = 0.3.0 BuildArch: noarch %description Sometimes you have an object that is not thread-safe, but you need to make sure each of its methods is thread-safe, because they deal with some resources, like files or databases and you want them to manage those resources sequentially. This small gem will help you achieve exactly that without any re-design of the objects you already have. Just decorate them with SyncEm decorator and that is it. %package doc Summary: Documentation for %{name} Requires: %{name} = %{version}-%{release} BuildArch: noarch %description doc Documentation for %{name}. %prep %setup -q -n %{gem_name}-%{version} %build # Create the gem as gem install only works on a gem file gem build ../%{gem_name}-%{version}.gemspec # %%gem_install compiles any C extensions and installs the gem into ./%%gem_dir # by default, so that we can move it into the buildroot in %%install %gem_install %install mkdir -p %{buildroot}%{gem_dir} cp -a .%{gem_dir}/* \ %{buildroot}%{gem_dir}/ %check pushd .%{gem_instdir} # ruby -e 'Dir.glob "./test/**/*_test.rb", &method(:require)' popd %files %dir %{gem_instdir} %{gem_instdir}/.0pdd.yml %exclude %{gem_instdir}/.gitignore %{gem_instdir}/.pdd %exclude %{gem_instdir}/.rubocop.yml %{gem_instdir}/.rultor.yml %exclude %{gem_instdir}/.travis.yml %license %{gem_instdir}/LICENSE.txt %{gem_instdir}/appveyor.yml %{gem_libdir} %{gem_instdir}/logo.svg %exclude %{gem_cache} %{gem_spec} %files doc %doc %{gem_docdir} %{gem_instdir}/Gemfile %doc %{gem_instdir}/README.md %{gem_instdir}/Rakefile %{gem_instdir}/syncem.gemspec %{gem_instdir}/test %changelog * Thu Sep 16 2021 mockbuilder - 0.1.2-1 - Initial package