lib/inochi/templates/inochi.rb.rbs in inochi-4.0.1 vs lib/inochi/templates/inochi.rb.rbs in inochi-5.0.0

- old
+ new

@@ -1,31 +1,31 @@ module #{library_name} ## # Official name of this project. # - PROJECT = #{project_name.inspect} + PROJECT = '#{project_name}' ## # Short single-line description of this project. # - TAGLINE = "TODO: the tagline of this project" + TAGLINE = 'TODO: the tagline of this project' ## # Address of this project's official home page. # - WEBSITE = "http://#{package_name}.rubyforge.org" + WEBSITE = 'http://#{package_name}.rubyforge.org' ## # Number of this release of this project. # - VERSION = #{project_version.inspect} + VERSION = '#{project_version}' ## # Date of this release of this project. # - RELDATE = #{project_release.inspect} + RELDATE = '#{project_release}' ## # Description of this release of this project. # def self.inspect @@ -42,18 +42,18 @@ # # @example # # RUNTIME = { # # this project needs exactly version 1.2.3 of the "an_example" gem - # "an_example" => [ "1.2.3" ], + # 'an_example' => [ '1.2.3' ], # # # this project needs at least version 1.2 (but not # # version 1.2.4 or newer) of the "another_example" gem - # "another_example" => [ ">= 1.2" , "< 1.2.4" ], + # 'another_example' => [ '>= 1.2' , '< 1.2.4' ], # # # this project needs any version of the "yet_another_example" gem - # "yet_another_example" => [], + # 'yet_another_example' => [], # } # RUNTIME = {} ## @@ -61,21 +61,21 @@ # # @example # # DEVTIME = { # # this project needs exactly version 1.2.3 of the "an_example" gem - # "an_example" => [ "1.2.3" ], + # 'an_example' => [ '1.2.3' ], # # # this project needs at least version 1.2 (but not # # version 1.2.4 or newer) of the "another_example" gem - # "another_example" => [ ">= 1.2" , "< 1.2.4" ], + # 'another_example' => [ '>= 1.2' , '< 1.2.4' ], # # # this project needs any version of the "yet_another_example" gem # "yet_another_example" => [], # } # DEVTIME = { - "inochi" => [ ">= #{Inochi::VERSION}", "< #{Inochi::VERSION.to_i.next}" ], + 'inochi' => [ '>= #{Inochi::VERSION}', '< #{Inochi::VERSION.to_i.next}' ], } # establish gem version dependencies if respond_to? :gem, true [RUNTIME, DEVTIME].each do |deps|