Skip to content
This repository was archived by the owner on Apr 2, 2024. It is now read-only.

Commit c4fb555

Browse files
committedJul 4, 2020
Add missing Style/FrozenStringLiteralComment
Signed-off-by: Utkarsh Gupta <utkarsh@debian.org>
1 parent b5ba679 commit c4fb555

31 files changed

+62
-0
lines changed
 

‎Gemfile

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
source 'http://rubygems.org'
24

35
gemspec

‎iso8601.gemspec

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
24
require 'iso8601/version'
35

‎lib/iso8601.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'time'
24
require 'forwardable'
35

‎lib/iso8601/atomic.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module ISO8601
24
module Atomic
35
include Comparable

‎lib/iso8601/date.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module ISO8601
24
##
35
# A Date representation.

‎lib/iso8601/date_time.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module ISO8601
24
##
35
# A DateTime representation

‎lib/iso8601/days.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module ISO8601
24
##
35
# The Days atom in a {ISO8601::Duration}

‎lib/iso8601/duration.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module ISO8601
24
##
35
# A duration representation. When no base is provided, all atoms use an

‎lib/iso8601/errors.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module ISO8601
24
##
35
# Contains all ISO8601-specific errors.

‎lib/iso8601/hours.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module ISO8601
24
##
35
# The Hours atom in a {ISO8601::Duration}

‎lib/iso8601/minutes.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module ISO8601
24
##
35
# The Minutes atom in a {ISO8601::Duration}

‎lib/iso8601/months.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module ISO8601
24
##
35
# A Months atom in a {ISO8601::Duration}

‎lib/iso8601/seconds.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module ISO8601
24
##
35
# The Seconds atom in a {ISO8601::Duration}

‎lib/iso8601/time.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module ISO8601
24
##
35
# A Time representation

‎lib/iso8601/time_interval.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module ISO8601
24
##
35
# A Time Interval representation.

‎lib/iso8601/version.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module ISO8601
24
##
35
# The gem version

‎lib/iso8601/weeks.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module ISO8601
24
##
35
# A Weeks atom in a {ISO8601::Duration}

‎lib/iso8601/years.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module ISO8601
24
##
35
# A Years atom in a {ISO8601::Duration}

‎spec/iso8601/date_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe ISO8601::Date do

‎spec/iso8601/date_time_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe ISO8601::DateTime do

‎spec/iso8601/days_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
RSpec.describe ISO8601::Days do

‎spec/iso8601/duration_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
RSpec.describe ISO8601::Duration do

‎spec/iso8601/hours_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
RSpec.describe ISO8601::Hours do

‎spec/iso8601/minutes_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
RSpec.describe ISO8601::Minutes do

‎spec/iso8601/months_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
RSpec.describe ISO8601::Months do

‎spec/iso8601/seconds_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
RSpec.describe ISO8601::Seconds do

‎spec/iso8601/time_interval_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
RSpec.describe ISO8601::TimeInterval do

‎spec/iso8601/time_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
describe ISO8601::Time do

‎spec/iso8601/weeks_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
RSpec.describe ISO8601::Weeks do

‎spec/iso8601/years_spec.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'spec_helper'
24

35
RSpec.describe ISO8601::Years do

‎spec/spec_helper.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
$LOAD_PATH.unshift File.expand_path('..', __FILE__)
24
require 'iso8601'
35

0 commit comments

Comments
 (0)
This repository has been archived.