Skip to content

Commit

Permalink
Update gemspec to include License, Changelog and Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
miry committed May 23, 2022
1 parent ac97513 commit d09d443
Showing 1 changed file with 16 additions and 12 deletions.
28 changes: 16 additions & 12 deletions semian.gemspec
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
# frozen_string_literal: true

require 'semian/version'
require 'semian/platform'
$LOAD_PATH.unshift(File.expand_path("../lib", __FILE__))

require "semian/version"
require "semian/platform"

Gem::Specification.new do |s|
s.name = 'semian'
s.name = "semian"
s.version = Semian::VERSION
s.summary = 'Bulkheading for Ruby with SysV semaphores'
s.summary = "Bulkheading for Ruby with SysV semaphores"
s.description = <<-DOC
A Ruby C extention that is used to control access to shared resources
across process boundaries with SysV semaphores.
DOC
s.homepage = 'https://github.com/shopify/semian'
s.authors = ['Scott Francis', 'Simon Eskildsen', 'Dale Hamel']
s.email = 'scott.francis@shopify.com'
s.license = 'MIT'
s.homepage = "https://github.com/shopify/semian"
s.authors = ["Scott Francis", "Simon Eskildsen", "Dale Hamel"]
s.email = "opensource@shopify.com"
s.license = "MIT"

s.metadata["allowed_push_host"] = "https://rubygems.org"

s.metadata['allowed_push_host'] = 'https://rubygems.org'
s.files = ::Dir["{lib,ext}/**/**/*.{rb,h,c}"] +
::Dir.glob('*.md')

s.files = Dir['{lib,ext}/**/**/*.{rb,h,c}']
s.extensions = ['ext/semian/extconf.rb']
s.extensions = ["ext/semian/extconf.rb"]
end

0 comments on commit d09d443

Please sign in to comment.