Sha256: 0f3372d524da1cda095d372c13ced5ea06f841e7ba107c09ae513c57774a2076
Contents?: true
Size: 643 Bytes
Versions: 16
Compression:
Stored size: 643 Bytes
Contents
# GEM TASK ###### gemspec attributes You can add any of the supported gemspec attributes to your project's `.new` configuration file. ```yaml tasks: gem: summary: My gem summary test_files: <%= Dir.glob('spec/*.rb') %> # use erb rules for inline ruby ``` A full list can be found here http://guides.rubygems.org/specification-reference The following attributes expect arrays of unix glob patterns * files * test_files * extra_rdoc_files ```yaml tasks: gem: gemspec: files: - 'lib/**/*.rb' test_files: - 'spec/**/*.rb' ``` The following attributes are automatically set. * name * version * date
Version data entries
16 entries across 16 versions & 1 rubygems