#!/usr/bin/gem build # encoding: utf-8

$:.unshift File.dirname(__FILE__) + '/library' require '<%= underscore_name %>'

Gem::Specification.new do |spec|

# The project description.
spec.name    = "<%= underscore_name %>"
spec.version = <%= name %>::Version
spec.summary = %{No summary}
spec.description = <<-eos
  No description
eos

# The project license.
spec.license   "MIT"

# The author(s) full name.
spec.author  = "<%= user_full_name %>"

# The author(s) e-mail address.
spec.email   = "<%= user_email_address %>"

# The exported files.
spec.files = Dir["library/**/*.rb", "README.md", "LICENSE", ".yardopts"]

# The library directory.
spec.require_path = "library"

# The dependencies.
spec.add_runtime_dependency 'majic', '~> <%= Majic::Version %>'
spec.add_development_dependency 'rspec', '> 2.0'

end

# vim: set syntax=ruby