Sha256: 005339b5879ae28709ead1f6d5c69f57754ef3517cf9b3c9982d4957a08a2fbe
Contents?: true
Size: 505 Bytes
Versions: 9
Compression:
Stored size: 505 Bytes
Contents
# frozen_string_literal: true require 'rdoc/task' # RDoc setup # ---------------------------------------------------------------------------- Rake::RDocTask.new do |rdoc| version = File.read('VERSION') rdoc.rdoc_dir = 'rdoc' rdoc.title = "currency_select #{version}" rdoc.rdoc_files.include('README.md') rdoc.rdoc_files.include('lib/**/*.rb') end desc 'Runs RuboCop for checking the Ruby files.' task :rubocop do sh 'rubocop lib/ rails/ spec/ currency_select.gemspec Gemfile Rakefile' end
Version data entries
9 entries across 9 versions & 1 rubygems