Sha256: 70e45fc137e8ed8af6c1ddcfb94202957abd421890121b6b696bcded2be42a53

Contents?: true

Size: 943 Bytes

Versions: 1

Compression:

Stored size: 943 Bytes

Contents

# -*- encoding: utf-8 -*-

require File.dirname(__FILE__) + "/lib/website/version"

Gem::Specification.new do |gem|
  gem.name          = "website"
  gem.version       = Website::VERSION
  gem.summary       = "Open the github repo for the current project in your default browser."
  gem.description   = "Open the github repo for the current project in your default browser. Usage: In a folder with a git repo, run: $ website"
  gem.authors       = ["Jan Lelis"]
  gem.email         = ["mail@janlelis.de"]
  gem.homepage      = "https://github.com/janlelis/website"
  gem.license       = "MIT"

  gem.files         = Dir["{**/}{.*,*}"].select{ |path| File.file?(path) && path !~ /^pkg/ }
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ["lib"]

  gem.required_ruby_version = "~> 2.0"
  gem.add_dependency "launchy", "~> 2.4"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
website-1.0.0 website.gemspec