Sha256: feb77444a1039dcffae1c5cfe518600e05da6a9339048ce158917794a96274c0
Contents?: true
Size: 742 Bytes
Versions: 1
Compression:
Stored size: 742 Bytes
Contents
module Gemsmith module Skeletons class RspecSkeleton < BaseSkeleton def create_files template "#{rspec_root}/spec_helper.rb.tt", template_options template "#{rspec_root}/%gem_name%_spec.rb.tt", template_options template "#{rspec_root}/support/kit/default_config.rb.tt", template_options template "#{rspec_root}/support/kit/garbage_collection.rb.tt", template_options template "#{rspec_root}/support/kit/stderr.rb.tt", template_options template "#{rspec_root}/support/kit/stdout.rb.tt", template_options template "#{rspec_root}/support/kit/temp_dir.rb.tt", template_options end private def rspec_root "%gem_name%/spec" end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gemsmith-5.1.0 | lib/gemsmith/skeletons/rspec_skeleton.rb |