Skip to content

Commit

Permalink
Fix Rakefile, Update Authors
Browse files Browse the repository at this point in the history
  • Loading branch information
westonganger committed Jan 21, 2017
1 parent 80275f3 commit 83d42cc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
23 changes: 12 additions & 11 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
#!/usr/bin/env rake

require 'bundler/setup'

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.libs << 'test'
t.pattern = 'test/**/*_test.rb'
t.verbose = false
require File.expand_path(File.dirname(__FILE__) + '/lib/prawn-rails/version.rb')
require 'bundler/gem_tasks'

task :test do
require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.libs << 'test'
t.pattern = 'test/**/*_test.rb'
t.verbose = false
end
end

task default: :test
4 changes: 2 additions & 2 deletions prawn-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ require "prawn-rails/version"
Gem::Specification.new do |s|
s.name = "prawn-rails"
s.version = PrawnRails::VERSION
s.authors = ["Carlos Ortiz"]
s.email = ["[email protected]"]
s.authors = ["Carlos Ortiz", "Weston Ganger"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "https://github.com/cortiz/prawn-rails"
s.summary = "Prawn Handler for Rails"
s.description = "Prawn Handler for Rails. Handles and registers pdf formats."
Expand Down

0 comments on commit 83d42cc

Please sign in to comment.