summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2016-08-23 12:57:40 -0700
committerTim Smith <tsmith@chef.io>2016-08-23 12:57:40 -0700
commite1c068e9e8696da73934b63ec119b73411e42143 (patch)
treee3744677b24555485a773a1db225ad899091a730
parent00b28776a512ae7005aaf8782690979f24c4fcfc (diff)
downloadmixlib-config-e1c068e9e8696da73934b63ec119b73411e42143.tar.gz
Opscode -> Chef
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--NOTICE10
-rw-r--r--features/steps/config_steps.rb4
-rw-r--r--features/support/config_it.rb4
-rw-r--r--features/support/env.rb4
-rw-r--r--lib/mixlib/config.rb8
-rw-r--r--lib/mixlib/config/configurable.rb4
-rw-r--r--lib/mixlib/config/reopened_config_context_with_configurable_error.rb4
-rw-r--r--lib/mixlib/config/reopened_configurable_with_config_context_error.rb4
-rw-r--r--lib/mixlib/config/unknown_config_option_error.rb4
-rw-r--r--lib/mixlib/config/version.rb4
-rw-r--r--spec/mixlib/config_spec.rb4
11 files changed, 27 insertions, 27 deletions
diff --git a/NOTICE b/NOTICE
index a7b0d2a..a267d67 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,25 +1,25 @@
Mixin::Config NOTICE
=================
-Developed at Opscode (http://www.opscode.com).
+Developed at Chef (http://www.chef.io).
- * Copyright 2009, Opscode, Inc. <legal@opscode.com>
+ * Copyright 2009-2016, Chef Software, Inc. <legal@chef.io>
Mixin::Config incorporates code from Chef. The Chef notice file follows:
Chef NOTICE
===========
-Developed at Opscode (http://www.opscode.com).
+Developed at Chef (http://www.chef.io).
Contributors and Copyright holders:
- * Copyright 2008, Adam Jacob <adam@opscode.com>
+ * Copyright 2008, Adam Jacob <adam@chef.io>
* Copyright 2008, Arjuna Christensen <aj@hjksolutions.com>
* Copyright 2008, Bryan McLellan <btm@loftninjas.org>
* Copyright 2008, Ezra Zygmuntowicz <ezra@engineyard.com>
* Copyright 2009, Sean Cribbs <seancribbs@gmail.com>
- * Copyright 2009, Christopher Brown <cb@opscode.com>
+ * Copyright 2009, Christopher Brown <cb@chef.io>
* Copyright 2009, Thom May <thom@clearairturbulence.org>
Chef incorporates code modified from Open4 (http://www.codeforpeople.com/lib/ruby/open4/), which was written by Ara T. Howard.
diff --git a/features/steps/config_steps.rb b/features/steps/config_steps.rb
index 4fece40..461ea9f 100644
--- a/features/steps/config_steps.rb
+++ b/features/steps/config_steps.rb
@@ -1,6 +1,6 @@
#
-# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 Opscode, Inc.
+# Author:: Adam Jacob (<adam@chef.io>)
+# Copyright:: Copyright (c) 2008-2016 Chef Software, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/features/support/config_it.rb b/features/support/config_it.rb
index 37b692a..74caa2d 100644
--- a/features/support/config_it.rb
+++ b/features/support/config_it.rb
@@ -1,6 +1,6 @@
#
-# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 Opscode, Inc.
+# Author:: Adam Jacob (<adam@chef.io>)
+# Copyright:: Copyright (c) 2008-2016 Chef Software, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/features/support/env.rb b/features/support/env.rb
index b51308d..c788c7e 100644
--- a/features/support/env.rb
+++ b/features/support/env.rb
@@ -1,6 +1,6 @@
#
-# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 Opscode, Inc.
+# Author:: Adam Jacob (<adam@chef.io>)
+# Copyright:: Copyright (c) 2008-2016 Chef Software, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/lib/mixlib/config.rb b/lib/mixlib/config.rb
index b941920..40c5926 100644
--- a/lib/mixlib/config.rb
+++ b/lib/mixlib/config.rb
@@ -1,8 +1,8 @@
#
-# Author:: Adam Jacob (<adam@opscode.com>)
-# Author:: Nuo Yan (<nuo@opscode.com>)
-# Author:: Christopher Brown (<cb@opscode.com>)
-# Copyright:: Copyright (c) 2008 Opscode, Inc.
+# Author:: Adam Jacob (<adam@chef.io>)
+# Author:: Nuo Yan (<nuo@chef.io>)
+# Author:: Christopher Brown (<cb@chef.io>)
+# Copyright:: Copyright (c) 2008-2016 Chef Software, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/lib/mixlib/config/configurable.rb b/lib/mixlib/config/configurable.rb
index 4a1bd46..e1b5b14 100644
--- a/lib/mixlib/config/configurable.rb
+++ b/lib/mixlib/config/configurable.rb
@@ -1,6 +1,6 @@
#
-# Author:: John Keiser (<jkeiser@opscode.com>)
-# Copyright:: Copyright (c) 2013 Opscode, Inc.
+# Author:: John Keiser (<jkeiser@chef.io>)
+# Copyright:: Copyright (c) 2013-2016 Chef Software, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/lib/mixlib/config/reopened_config_context_with_configurable_error.rb b/lib/mixlib/config/reopened_config_context_with_configurable_error.rb
index 3f3351f..a7cae48 100644
--- a/lib/mixlib/config/reopened_config_context_with_configurable_error.rb
+++ b/lib/mixlib/config/reopened_config_context_with_configurable_error.rb
@@ -1,6 +1,6 @@
#
-# Author:: John Keiser (<jkeiser@opscode.com>)
-# Copyright:: Copyright (c) 2013 Opscode, Inc.
+# Author:: John Keiser (<jkeiser@chef.io>)
+# Copyright:: Copyright (c) 2013-2016 Chef Software, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/lib/mixlib/config/reopened_configurable_with_config_context_error.rb b/lib/mixlib/config/reopened_configurable_with_config_context_error.rb
index 47ffb70..f598066 100644
--- a/lib/mixlib/config/reopened_configurable_with_config_context_error.rb
+++ b/lib/mixlib/config/reopened_configurable_with_config_context_error.rb
@@ -1,6 +1,6 @@
#
-# Author:: John Keiser (<jkeiser@opscode.com>)
-# Copyright:: Copyright (c) 2013 Opscode, Inc.
+# Author:: John Keiser (<jkeiser@chef.io>)
+# Copyright:: Copyright (c) 2013-2016 Chef Software, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/lib/mixlib/config/unknown_config_option_error.rb b/lib/mixlib/config/unknown_config_option_error.rb
index 83dd1da..961b09a 100644
--- a/lib/mixlib/config/unknown_config_option_error.rb
+++ b/lib/mixlib/config/unknown_config_option_error.rb
@@ -1,6 +1,6 @@
#
-# Author:: John Keiser (<jkeiser@opscode.com>)
-# Copyright:: Copyright (c) 2013 Opscode, Inc.
+# Author:: John Keiser (<jkeiser@chef.io>)
+# Copyright:: Copyright (c) 2013-2016 Chef Software, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/lib/mixlib/config/version.rb b/lib/mixlib/config/version.rb
index c0729ca..171b0f8 100644
--- a/lib/mixlib/config/version.rb
+++ b/lib/mixlib/config/version.rb
@@ -1,6 +1,6 @@
#
-# Author:: Daniel DeLeo (<dan@opscode.com>)
-# Copyright:: Copyright (c) 2013 Opscode, Inc.
+# Author:: Daniel DeLeo (<dan@chef.io>)
+# Copyright:: Copyright (c) 2013-2016 Chef Software, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/spec/mixlib/config_spec.rb b/spec/mixlib/config_spec.rb
index f9a1b95..cc1f872 100644
--- a/spec/mixlib/config_spec.rb
+++ b/spec/mixlib/config_spec.rb
@@ -1,6 +1,6 @@
#
-# Author:: Adam Jacob (<adam@opscode.com>)
-# Copyright:: Copyright (c) 2008 Opscode, Inc.
+# Author:: Adam Jacob (<adam@chef.io>)
+# Copyright:: Copyright (c) 2008-2016 Chef Software, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");