# Generated from mockumentary-0.2.1.gem by gem2rpm -*- rpm-spec -*- %global gem_name mockumentary Name: rubygem-%{gem_name} Version: 0.2.1 Release: 1%{?dist} Summary: An ActiveRecord mocking framework, for making your copius BDD rails tests not quite so slow License: MIT URL: http://github.com/baccigalupi/mockumentary Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem BuildRequires: ruby(release) BuildRequires: rubygems-devel BuildRequires: ruby # BuildRequires: rubygem(activerecord) >= 3.1.1 # BuildRequires: rubygem(activerecord) < 3.2 # BuildRequires: rubygem(sqlite3) # BuildRequires: rubygem(rspec) >= 2.3.0 # BuildRequires: rubygem(rspec) < 2.4 # BuildRequires: rubygem(jeweler) >= 1.6.4 # BuildRequires: rubygem(jeweler) < 1.7 BuildArch: noarch %description With the happy proliferation of TDD, test suites are getting massive, and developer efficiency is dwindling as we wait for our tests to pass. There is a big tradeoff between making unit test more integrationish (and therefore more reliable) vs. making them very mocky, unity and fast. Mockumentary is a library for the later. It inspects the ActiveRecord universe and makes a series of AR mockeries that approximate model without hitting the database, or making any assertions. The assertions, they are still part of the developers job. Mocumentary has two types of AR mockeries: One is used within the Rails universe. It uses introspection to derive association and field information. The second is a static copy built from the first. This static version can be used outside the Rails test universe in a suite faster than the speed of Rails environment load time. Mocking isn't for everyone, so test-drive responsibly. %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} # rspec spec popd %files %dir %{gem_instdir} %license %{gem_instdir}/LICENSE.txt %{gem_instdir}/VERSION %{gem_libdir} %exclude %{gem_cache} %{gem_spec} %files doc %doc %{gem_docdir} %doc %{gem_instdir}/.document %exclude %{gem_instdir}/.rspec %{gem_instdir}/Gemfile %{gem_instdir}/Gemfile.lock %doc %{gem_instdir}/README.rdoc %{gem_instdir}/Rakefile %{gem_instdir}/mockumentary.gemspec %{gem_instdir}/spec %changelog * Tue Aug 24 2021 mockbuilder - 0.2.1-1 - Initial package