Sha256: e102ab4d37af5df2cc96c8a0da15e7687934ee914cfe55464603e233688d0b30

Contents?: true

Size: 1.28 KB

Versions: 7

Compression:

Stored size: 1.28 KB

Contents

require 'rubygems'
require 'rake/gempackagetask'
require 'rubygems/specification'
require 'date'
require 'spec/rake/spectask'

GEM = "nameable"
GEM_VERSION = "0.1.0"
AUTHOR = "Chris Horn"
EMAIL = "chorn@chorn.com"
HOMEPAGE = "http://github.com/chorn/nameable"
SUMMARY = "A ruby library to parse people names into parts and reformat them."

spec = Gem::Specification.new do |s|
  s.name = GEM
  s.version = GEM_VERSION
  s.platform = Gem::Platform::RUBY
  s.has_rdoc = true
  s.extra_rdoc_files = ["README", "LICENSE", 'TODO']
  s.summary = SUMMARY
  s.description = s.summary
  s.author = AUTHOR
  s.email = EMAIL
  s.homepage = HOMEPAGE
  
  # Uncomment this to add a dependency
  # s.add_dependency "foo"
  
  s.require_path = 'lib'
  s.autorequire = GEM
  s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,spec}/**/*")
end

task :default => :spec

desc "Run specs"
Spec::Rake::SpecTask.new do |t|
  t.spec_files = FileList['spec/**/*_spec.rb']
  t.spec_opts = %w(-fs --color)
end


Rake::GemPackageTask.new(spec) do |pkg|
  pkg.gem_spec = spec
end

desc "install the gem locally"
task :install => [:package] do
  sh %{sudo gem install pkg/#{GEM}-#{GEM_VERSION}}
end

desc "create a gemspec file"
task :make_spec do
  File.open("#{GEM}.gemspec", "w") do |file|
    file.puts spec.to_ruby
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
nameable-0.4.2 Rakefile
nameable-0.4.1 Rakefile
nameable-0.4.0 Rakefile
nameable-0.3.0 Rakefile
nameable-0.2.0 Rakefile
nameable-0.1.2 Rakefile
nameable-0.1.1 Rakefile