# Generated from wcc-base-0.3.1.gem by gem2rpm -*- rpm-spec -*- %global gem_name wcc-base Name: rubygem-%{gem_name} Version: 0.3.1 Release: 1%{?dist} Summary: # WCC This gem holds the base namespace and default configuration for Watermark Community Church's Ruby development. This is kind of the general repository for common code between different apps. As components begin to emerge in this code base they should be extracted into a separate gem. This should be a breeding ground for new gems. ## Installation Add this line to your application's Gemfile: gem 'wcc-base' And then execute: $ bundle Or install it yourself as: $ gem install wcc-base ## Usage No specific usage instructions at this time. ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create new Pull Request License: MIT URL: https://github.com/watermarkchurch/wcc Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem BuildRequires: ruby(release) BuildRequires: rubygems-devel BuildRequires: ruby BuildArch: noarch %description Repository for generic common code in Watermark Community Church applications. %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} # Run the test suite. popd %files %dir %{gem_instdir} %exclude %{gem_instdir}/.gitignore %license %{gem_instdir}/LICENSE.txt %{gem_libdir} %exclude %{gem_cache} %{gem_spec} %files doc %doc %{gem_docdir} %{gem_instdir}/Gemfile %doc %{gem_instdir}/README.md %{gem_instdir}/Rakefile %{gem_instdir}/wcc-base.gemspec %changelog * Wed Aug 25 2021 mockbuilder - 0.3.1-1 - Initial package