Added a license file and copyright text.

This commit is contained in:
Ranjan Kumar 2014-05-14 13:01:14 +05:30
Родитель 204fb22eb8
Коммит 1ab1bb9a7c
103 изменённых файлов: 516 добавлений и 0 удалений

7
LICENSE.txt Normal file
Просмотреть файл

@ -0,0 +1,7 @@
Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use these files except in
compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is
distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
require 'puppet/application_config'
include Puppet::ApplicationConfig

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
require 'puppet/face'
require 'puppet/application/face_base'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
require 'puppet/application/face_base'
class Puppet::Application::AzureCloudservice < Puppet::Application::FaceBase

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
require 'puppet/application/face_base'
class Puppet::Application::AzureSqldb < Puppet::Application::FaceBase

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
require 'puppet/application/face_base'
class Puppet::Application::AzureStorage < Puppet::Application::FaceBase

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
require 'puppet/application/face_base'
class Puppet::Application::AzureVm < Puppet::Application::FaceBase

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
require 'puppet/application/face_base'
class Puppet::Application::AzureVnet < Puppet::Application::FaceBase

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
require 'puppet/core/utility'
include Puppet::Core::Utility

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
require 'puppet/core/remote_connection'
require 'puppet/core/utility'
require 'puppet/azurepack/installer'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
require 'erb'
module Puppet

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
require 'puppet/core/utility'
require 'puppet/application_config'
include Puppet::ApplicationConfig

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'net/ssh'
require 'net/scp'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'highline/import'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
require 'puppet/affinity_group'
Puppet::Face.define(:azure_affinitygroup, '1.0.0') do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_affinitygroup, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_affinitygroup, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'tilt'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_affinitygroup, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
require 'puppet/cloud_service'
Puppet::Face.define(:azure_cloudservice, '1.0.0') do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_cloudservice, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_cloudservice, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_cloudservice, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'tilt'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_cloudservice, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
require 'puppet/sql_database'
Puppet::Face.define(:azure_sqldb, '1.0.0') do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_sqldb, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_sqldb, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_sqldb, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_sqldb, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'tilt'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_sqldb, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_sqldb, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
require 'puppet/storage_account'
Puppet::Face.define(:azure_storage, '1.0.0') do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_storage, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_storage, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'tilt'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_storage, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
require 'puppet/virtual_machine'
Puppet::Face.define(:azure_vm, '1.0.0') do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_vm, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_vm, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'puppet/azurepack/bootstrap'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_vm, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_vm, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_vm, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_vm, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_vm, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_vm, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'tilt'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_vm, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_vm, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_vm, '1.0.0' do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
require 'puppet/virtual_network'
Puppet::Face.define(:azure_vnet, '1.0.0') do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'tilt'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
Puppet::Face.define :azure_vnet, '1.0.0' do
action :set do

Просмотреть файл

@ -1,3 +1,7 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
Puppet::Face.define :azure_vnet, '1.0.0' do
action :set_xml_schema do

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
module Puppet
module OptionValidation

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
require 'puppet/core/utility'
require 'puppet/application_config'
include Puppet::ApplicationConfig

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
require 'puppet/core/utility'
require 'puppet/application_config'
include Puppet::ApplicationConfig

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
require 'puppet/application_config'
require 'puppet/option_validation'
include Puppet::ApplicationConfig

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
require 'puppet/application_config'
require 'puppet/core/utility'
include Puppet::ApplicationConfig

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
class windowsazure::bootstrap (
$puppet_master_ip,
$node_ipaddress,

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
class windowsazure::cloudservice (
$azure_management_certificate,
$azure_subscription_id,

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
class windowsazure::db (
$azure_management_certificate,
$azure_subscription_id,

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
class windowsazure::provisioner (
# For windows azure authentication
$azure_management_certificate,

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
class windowsazure::storage (
$azure_management_certificate,
$azure_subscription_id,

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
class windowsazure::vm (
$vm_name,
$vm_user,

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
class windowsazure::vnet (
$azure_management_certificate,
$azure_subscription_id,

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'puppet'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
shared_examples 'validate authentication credential' do |service_method|

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Просмотреть файл

@ -1,3 +1,8 @@
#-------------------------------------------------------------------------
# Copyright (c) Microsoft Open Technologies, Inc.
# All Rights Reserved. Licensed under the Apache 2.0 License.
#--------------------------------------------------------------------------
# encoding: UTF-8
require 'spec_helper'

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше