1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2026-05-16 13:47:12 +02:00

gem: adopt frozen string literals

This commit is contained in:
cn
2020-03-06 21:33:29 +01:00
parent c73c09f311
commit b597ecb15e
19 changed files with 27 additions and 8 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
#!/usr/bin/env ruby
# frozen_string_literal: true
require 'etc'
require 'logger'
+1
View File
@@ -1,3 +1,4 @@
# frozen_string_literal: true
require 'forwardable'
+1
View File
@@ -1,3 +1,4 @@
# frozen_string_literal: true
module Dyndnsd
module Generator
+1
View File
@@ -1,3 +1,4 @@
# frozen_string_literal: true
require 'ipaddr'
+1
View File
@@ -1,3 +1,4 @@
# frozen_string_literal: true
module Dyndnsd
module Responder
+1
View File
@@ -1,3 +1,4 @@
# frozen_string_literal: true
module Dyndnsd
module Responder
+1
View File
@@ -1,3 +1,4 @@
# frozen_string_literal: true
# Adapted from https://github.com/eric/metriks-graphite/blob/master/lib/metriks/reporter/graphite.rb
@@ -1,3 +1,4 @@
# frozen_string_literal: true
module Dyndnsd
module Updater
+2 -1
View File
@@ -1,4 +1,5 @@
# frozen_string_literal: true
module Dyndnsd
VERSION = '2.1.1'.freeze
VERSION = '2.1.1'
end