Sha256: 0067a05a86c7fad866c69e86e41fbb6131ee7b21e788f8967ab1507dd8a5a741

Contents?: true

Size: 749 Bytes

Versions: 1

Compression:

Stored size: 749 Bytes

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "hello/version"

Gem::Specification.new do |s|
  s.name        = "helloworld-pk"
  s.version     = Hello::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Paul Ketelle"]
  s.email       = ["paul@ketelle.com"]
  s.homepage    = ""
  s.summary     = %q{Outputs Hello World}
  s.description = %q{Simply returns the string "Hello World! How are you ?"}
  
  s.add_dependency "paperclip"

  s.rubyforge_project = "hello"

  s.files         = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
helloworld-pk-0.0.1 hello.gemspec