From 99d2f489ddff0424e87f3dec7980a48bc450acbc Mon Sep 17 00:00:00 2001 From: Holger Just Date: Wed, 24 Jan 2018 00:21:04 +0100 Subject: [PATCH] Update Copyright year --- .travis.yml | 2 +- LICENSE.txt | 2 +- lib/rackstash/adapter.rb | 2 +- lib/rackstash/adapter/base_adapter.rb | 2 +- lib/rackstash/adapter/file.rb | 2 +- lib/rackstash/buffer_stack.rb | 2 +- lib/rackstash/flow.rb | 2 +- lib/rackstash/logger.rb | 2 +- lib/rackstash/rack/middleware.rb | 3 ++- spec/rackstash/adapter/base_adapter_spec.rb | 2 +- spec/rackstash/adapter/file_spec.rb | 2 +- spec/rackstash/adapter_spec.rb | 2 +- spec/rackstash/class_registry_spec.rb | 2 +- spec/rackstash/fields/hash_spec.rb | 2 +- spec/rackstash/flow_spec.rb | 2 +- spec/rackstash/rack/middleware_spec.rb | 2 +- 16 files changed, 17 insertions(+), 16 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4eb54d7..73465f7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,4 @@ -# Copyright 2017 Holger Just +# Copyright 2017 - 2018 Holger Just # # This software may be modified and distributed under the terms # of the MIT license. See the LICENSE.txt file for details. diff --git a/LICENSE.txt b/LICENSE.txt index b4989af..e6c956f 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2017 Holger Just +Copyright (c) 2017 - 2018 Holger Just Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/lib/rackstash/adapter.rb b/lib/rackstash/adapter.rb index c3a508a..ab74233 100644 --- a/lib/rackstash/adapter.rb +++ b/lib/rackstash/adapter.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright 2017 Holger Just +# Copyright 2017 - 2018 Holger Just # # This software may be modified and distributed under the terms # of the MIT license. See the LICENSE.txt file for details. diff --git a/lib/rackstash/adapter/base_adapter.rb b/lib/rackstash/adapter/base_adapter.rb index c5fc2d1..deba12d 100644 --- a/lib/rackstash/adapter/base_adapter.rb +++ b/lib/rackstash/adapter/base_adapter.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright 2017 Holger Just +# Copyright 2017 - 2018 Holger Just # # This software may be modified and distributed under the terms # of the MIT license. See the LICENSE.txt file for details. diff --git a/lib/rackstash/adapter/file.rb b/lib/rackstash/adapter/file.rb index 8c030aa..2832dc3 100644 --- a/lib/rackstash/adapter/file.rb +++ b/lib/rackstash/adapter/file.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright 2017 Holger Just +# Copyright 2017 - 2018 Holger Just # # This software may be modified and distributed under the terms # of the MIT license. See the LICENSE.txt file for details. diff --git a/lib/rackstash/buffer_stack.rb b/lib/rackstash/buffer_stack.rb index 45a5652..973950f 100644 --- a/lib/rackstash/buffer_stack.rb +++ b/lib/rackstash/buffer_stack.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright 2017 Holger Just +# Copyright 2017 - 2018 Holger Just # # This software may be modified and distributed under the terms # of the MIT license. See the LICENSE.txt file for details. diff --git a/lib/rackstash/flow.rb b/lib/rackstash/flow.rb index 5bf6385..8f9196c 100644 --- a/lib/rackstash/flow.rb +++ b/lib/rackstash/flow.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright 2017 Holger Just +# Copyright 2017 - 2018 Holger Just # # This software may be modified and distributed under the terms # of the MIT license. See the LICENSE.txt file for details. diff --git a/lib/rackstash/logger.rb b/lib/rackstash/logger.rb index 6457c9e..03d054c 100644 --- a/lib/rackstash/logger.rb +++ b/lib/rackstash/logger.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright 2017 Holger Just +# Copyright 2017 - 2018 Holger Just # # This software may be modified and distributed under the terms # of the MIT license. See the LICENSE.txt file for details. diff --git a/lib/rackstash/rack/middleware.rb b/lib/rackstash/rack/middleware.rb index f817f3e..16b9f6b 100644 --- a/lib/rackstash/rack/middleware.rb +++ b/lib/rackstash/rack/middleware.rb @@ -1,5 +1,6 @@ # frozen_string_literal: true -# Copyright 2016 Holger Just +# +# Copyright 2017 - 2018 Holger Just # # This software may be modified and distributed under the terms # of the MIT license. See the LICENSE.txt file for details. diff --git a/spec/rackstash/adapter/base_adapter_spec.rb b/spec/rackstash/adapter/base_adapter_spec.rb index f31c403..814b7a1 100644 --- a/spec/rackstash/adapter/base_adapter_spec.rb +++ b/spec/rackstash/adapter/base_adapter_spec.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright 2017 Holger Just +# Copyright 2017 - 2018 Holger Just # # This software may be modified and distributed under the terms # of the MIT license. See the LICENSE.txt file for details. diff --git a/spec/rackstash/adapter/file_spec.rb b/spec/rackstash/adapter/file_spec.rb index 13c7952..90ae603 100644 --- a/spec/rackstash/adapter/file_spec.rb +++ b/spec/rackstash/adapter/file_spec.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright 2017 Holger Just +# Copyright 2017 - 2018 Holger Just # # This software may be modified and distributed under the terms # of the MIT license. See the LICENSE.txt file for details. diff --git a/spec/rackstash/adapter_spec.rb b/spec/rackstash/adapter_spec.rb index 84a8a99..ea2aa40 100644 --- a/spec/rackstash/adapter_spec.rb +++ b/spec/rackstash/adapter_spec.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright 2017 Holger Just +# Copyright 2017 - 2018 Holger Just # # This software may be modified and distributed under the terms # of the MIT license. See the LICENSE.txt file for details. diff --git a/spec/rackstash/class_registry_spec.rb b/spec/rackstash/class_registry_spec.rb index 3e0aee5..cb21cbc 100644 --- a/spec/rackstash/class_registry_spec.rb +++ b/spec/rackstash/class_registry_spec.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright 2017 Holger Just +# Copyright 2017 - 2018 Holger Just # # This software may be modified and distributed under the terms # of the MIT license. See the LICENSE.txt file for details. diff --git a/spec/rackstash/fields/hash_spec.rb b/spec/rackstash/fields/hash_spec.rb index 51c6280..555c80b 100644 --- a/spec/rackstash/fields/hash_spec.rb +++ b/spec/rackstash/fields/hash_spec.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright 2017 Holger Just +# Copyright 2017 - 2018 Holger Just # # This software may be modified and distributed under the terms # of the MIT license. See the LICENSE.txt file for details. diff --git a/spec/rackstash/flow_spec.rb b/spec/rackstash/flow_spec.rb index c364ecd..f4dc4ae 100644 --- a/spec/rackstash/flow_spec.rb +++ b/spec/rackstash/flow_spec.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright 2017 Holger Just +# Copyright 2017 - 2018 Holger Just # # This software may be modified and distributed under the terms # of the MIT license. See the LICENSE.txt file for details. diff --git a/spec/rackstash/rack/middleware_spec.rb b/spec/rackstash/rack/middleware_spec.rb index 29b2542..c3ee7b9 100644 --- a/spec/rackstash/rack/middleware_spec.rb +++ b/spec/rackstash/rack/middleware_spec.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright 2017 Holger Just +# Copyright 2017 - 2018 Holger Just # # This software may be modified and distributed under the terms # of the MIT license. See the LICENSE.txt file for details.