Sha256: 417ea1e549aeb1440d75859019f634891e84f2e89010b25f76305c8ca871a256
Contents?: true
Size: 1.83 KB
Versions: 1
Compression:
Stored size: 1.83 KB
Contents
# -*- ruby -*- # Copyright (C) 2013-2018 Sascha Manns <Sascha.Manns@mailbox.org> # Release: # Pre-release: #* update docs #* Update copyright years if needed, in the following paths: # + lib/* #* Check version in lib/hoe-reek.rb #* Update History.rdoc & NEWS #* git:manifest #* bundler:gemfile #* bundler:gemfile_lock # x64-mingw32 # x64-mswin32 # x86-mingw32 # x86-mswin32 # ruby # x86_64-linux #* bundle_audit:run #* git -a -m "Anything" #* git tag x.x.x # Release: #* Create Release in Github #* rake release #* send_email #* clean_pkg # Post-release: #* Bump version #* Add new Milestone on Github require 'rubygems' require 'hoe' Hoe.plugin :bundler Hoe.plugin :rdoc Hoe.plugin :rubygems Hoe.plugin :version ###########################################DEVELOPING ZONE############################################################## # rubocop:disable Metrics/LineLength Hoe.spec 'hoe-reek' do developer('Sascha Manns', 'Sascha.Manns@mailbox.org') developer('Erik Hollensbe', 'erik@hollensbe.org') license 'GPL-3.0' # this should match the license in the README require_ruby_version '>= 2.3.0' self.history_file = 'History.rdoc' self.readme_file = 'README.rdoc' self.extra_rdoc_files = FileList['*.rdoc'].to_a self.post_install_message = 'Please file bugreports and feature requests on: https://github.com/saigkill/hoe-reek/issues' dependency 'bundler', '~> 1.16' dependency 'reek', '~> 4.8' extra_dev_deps << ['coveralls', '~> 0.8'] extra_dev_deps << ['hoe-bundler', '~> 1.4'] extra_dev_deps << ['hoe-rubygems', '~> 1.0'] extra_dev_deps << ['hoe-version', '~> 1.2'] extra_dev_deps << ['rake', '~> 12.3'] extra_dev_deps << ['rdoc', '~> 6.0'] extra_dev_deps << ['rspec', '~> 3.7'] end ##################################################SETUP ZONE############################################################ # vim: syntax=ruby
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hoe-reek-1.2.3 | Rakefile |