File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
3+ require_relative "lib/version"
4+
35Gem ::Specification . new do |s |
46 s . name = "entitlements-github-plugin"
5- s . version = File . read ( " VERSION" ) . chomp
7+ s . version = Entitlements :: Version :: VERSION
68 s . summary = "GitHub dotcom provider for entitlements-app"
7- s . description = ""
9+ s . description = "Entitlements plugin to manage GitHub Orgs and Team memberships and access "
810 s . authors = [ "GitHub, Inc. Security Ops" ]
9111012 s . license = "MIT"
11- s . files = Dir . glob ( "lib/**/*" ) + %w[ VERSION ]
13+ s . files = Dir . glob ( "lib/**/*" )
1214 s . homepage = "https://github.com/github/entitlements-github-plugin"
1315 s . executables = %w[ ]
1416
Original file line number Diff line number Diff line change 1+ # frozen_string_literal: true
2+
3+ module Entitlements
4+ module Version
5+ VERSION = "0.3.0"
6+ end
7+ end
You can’t perform that action at this time.
0 commit comments