diff --git a/lib/cv_builder/cv_data_sections/base.rb b/lib/cv_builder/cv_data_sections/base.rb index b9384ef..edaaa90 100644 --- a/lib/cv_builder/cv_data_sections/base.rb +++ b/lib/cv_builder/cv_data_sections/base.rb @@ -1,4 +1,5 @@ # frozen_string_literal: true + module CvDataSection class Base def initialize(hash) diff --git a/lib/cv_builder/cv_data_sections/education.rb b/lib/cv_builder/cv_data_sections/education.rb index cc4717b..b4a9cfb 100644 --- a/lib/cv_builder/cv_data_sections/education.rb +++ b/lib/cv_builder/cv_data_sections/education.rb @@ -11,4 +11,4 @@ def dig(*path) data end end -end \ No newline at end of file +end diff --git a/lib/cv_builder/cv_data_sections/parse_helpers/month_parser.rb b/lib/cv_builder/cv_data_sections/parse_helpers/month_parser.rb index 0662b94..97200ea 100644 --- a/lib/cv_builder/cv_data_sections/parse_helpers/month_parser.rb +++ b/lib/cv_builder/cv_data_sections/parse_helpers/month_parser.rb @@ -1,4 +1,5 @@ # frozen_string_literal: true + require "date" module CvDataSection @@ -13,4 +14,4 @@ def to_month(month_int) end end end -end \ No newline at end of file +end