Sha256: ab1620380a9d8ad153b035df9dd4ec3516dc8d73b1060d67f94403a27d9a3a1f

Contents?: true

Size: 1.16 KB

Versions: 15

Compression:

Stored size: 1.16 KB

Contents

# frozen_string_literal: true

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  warn e.message
  warn 'Run `bundle install` to install missing gems'
  exit e.status_code
end
require 'rake'
require 'juwelier'
Juwelier::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options
  gem.name = 'works_cited'
  gem.homepage = 'https://gemvein.com/museum/cases/works_cited'
  gem.metadata = { source_code_uri: 'http://github.com/gemvein/works_cited' }
  gem.license = 'MIT'
  gem.summary = %(Helper to generate list of Works Cited)
  gem.description = 'Works cited allows you to add a list of the works cited in ActiveRecord objects, '\
                    'to be formatted by a helper that can be added to relevant pages to format the '\
                    'citations like a bibliography.'
  gem.email = 'loren.lundgren@gmail.com'
  gem.authors = ['Loren Lundgren']

  # dependencies defined in Gemfile
end

Juwelier::RubygemsDotOrgTasks.new

desc 'Code coverage detail'
task :simplecov do
  ENV['COVERAGE'] = 'true'
  Rake::Task['test'].execute
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
works_cited-0.1.16 Rakefile
works_cited-0.1.15 Rakefile
works_cited-0.1.14 Rakefile
works_cited-0.1.13 Rakefile
works_cited-0.1.11 Rakefile
works_cited-0.1.10 Rakefile
works_cited-0.1.9 Rakefile
works_cited-0.1.8 Rakefile
works_cited-0.1.7 Rakefile
works_cited-0.1.6 Rakefile
works_cited-0.1.5 Rakefile
works_cited-0.1.4 Rakefile
works_cited-0.1.3 Rakefile
works_cited-0.1.2 Rakefile
works_cited-0.1.1 Rakefile