lib/byebug/gem.rb in byebug-dap-0.1.3 vs lib/byebug/gem.rb in byebug-dap-0.1.4
- old
+ new
@@ -1,11 +1,25 @@
module Byebug
+ # Debug Adapter Protocol support for Byebug
module DAP
+ # Gem name
NAME = 'byebug-dap'
- VERSION = '0.1.3'
+
+ # Gem version
+ VERSION = '0.1.4'
+
+ # Gem summary
SUMMARY = 'Debug Adapter Protocol for Byebug'
+
+ # Gem description
DESCRIPTION = 'Implements a Debug Adapter Protocol interface for Byebug'
+
+ # Gem authors
AUTHORS = ['Ethan Reesor']
+
+ # Gem website
WEBSITE = 'https://gitlab.com/firelizzard/byebug-dap'
+
+ # Gem license
LICENSE = 'Apache-2.0'
end
end