Sha256: 6970bd2d6c696a8a647c6403be3cedc511f5b69d690083cf89829a8e1a5bc936

Contents?: true

Size: 945 Bytes

Versions: 1

Compression:

Stored size: 945 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         = ["hi@ruby.consulting"]
  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.5"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
website-1.0.1 website.gemspec