Skip to content

Commit

Permalink
Clean up stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
PlagueHO committed Oct 28, 2017
1 parent cde0527 commit 9d61413
Show file tree
Hide file tree
Showing 4 changed files with 139 additions and 253 deletions.
64 changes: 64 additions & 0 deletions .gitattributes
@@ -0,0 +1,64 @@
###############################################################################
# Set default behavior to automatically normalize line endings.
###############################################################################
* text eol=crlf

###############################################################################
# Set default behavior for command prompt diff.
#
# This is need for earlier builds of msysgit that does not have it on by
# default for csharp files.
# Note: This is only used by command line
###############################################################################
#*.cs diff=csharp

###############################################################################
# Set the merge driver for project and solution files
#
# Merging from the command prompt will add diff markers to the files if there
# are conflicts (Merging from VS is not affected by the settings below, in VS
# the diff markers are never inserted). Diff markers may cause the following
# file extensions to fail to load in VS. An alternative would be to treat
# these files as binary and thus will always conflict and require user
# intervention with every merge. To do so, just uncomment the entries below
###############################################################################
#*.sln merge=binary
#*.csproj merge=binary
#*.vbproj merge=binary
#*.vcxproj merge=binary
#*.vcproj merge=binary
#*.dbproj merge=binary
#*.fsproj merge=binary
#*.lsproj merge=binary
#*.wixproj merge=binary
#*.modelproj merge=binary
#*.sqlproj merge=binary
#*.wwaproj merge=binary

###############################################################################
# behavior for image files
#
# image files are treated as binary by default.
###############################################################################
*.jpg binary
*.png binary
*.gif binary
*.exe binary

###############################################################################
# diff behavior for common document formats
#
# Convert binary document formats to text before diffing them. This feature
# is only available from the command line. Turn it on by uncommenting the
# entries below.
###############################################################################
#*.doc diff=astextplain
#*.DOC diff=astextplain
#*.docx diff=astextplain
#*.DOCX diff=astextplain
#*.dot diff=astextplain
#*.DOT diff=astextplain
#*.pdf diff=astextplain
#*.PDF diff=astextplain
#*.rtf diff=astextplain
#*.RTF diff=astextplain
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -7,6 +7,8 @@

## Introduction

This PowerShell module provides cmdlets for working with Azure Cosmos DB databases, collections, users and permissions.

## Requirements

## Contributing
Expand Down
165 changes: 73 additions & 92 deletions src/CosmosDB.psd1
@@ -1,127 +1,108 @@
#
# Module manifest for module 'CosmosDB'
#
# Generated by: Dan
#
# Generated on: 26/10/2017
#

@{
# Script module or binary module file associated with this manifest.
RootModule = 'CosmosDB.psm1'

# Script module or binary module file associated with this manifest.
RootModule = 'CosmosDB.psm1'

# Version number of this module.
ModuleVersion = '0.0.1.16'

# Supported PSEditions
# CompatiblePSEditions = @()

# ID used to uniquely identify this module
GUID = '7d7aeb42-8ed9-4555-b5fd-020795a5aa01'

# Author of this module
Author = 'Daniel Scott-Raynsford'

# Company or vendor of this module
CompanyName = 'Unknown'
# Version number of this module.
ModuleVersion = '0.0.1.16'

# Copyright statement for this module
Copyright = '(c) 2017 Daniel Scott-Raynsford. All rights reserved.'
# Supported PSEditions
# CompatiblePSEditions = @()

# Description of the functionality provided by this module
# Description = ''
# ID used to uniquely identify this module
GUID = '7d7aeb42-8ed9-4555-b5fd-020795a5aa01'

# Minimum version of the Windows PowerShell engine required by this module
# PowerShellVersion = ''
# Author of this module
Author = 'Daniel Scott-Raynsford'

# Name of the Windows PowerShell host required by this module
# PowerShellHostName = ''
# Company or vendor of this module
CompanyName = ''

# Minimum version of the Windows PowerShell host required by this module
# PowerShellHostVersion = ''
# Copyright statement for this module
Copyright = '(c) 2017 Daniel Scott-Raynsford. All rights reserved.'

# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# DotNetFrameworkVersion = ''
# Description of the functionality provided by this module
Description = 'This module provides cmdlets for working with Azure Cosmos DB databases, collections, users and permissions.'

# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# CLRVersion = ''
# Minimum version of the Windows PowerShell engine required by this module
# PowerShellVersion = ''

# Processor architecture (None, X86, Amd64) required by this module
# ProcessorArchitecture = ''
# Name of the Windows PowerShell host required by this module
# PowerShellHostName = ''

# Modules that must be imported into the global environment prior to importing this module
# RequiredModules = @()
# Minimum version of the Windows PowerShell host required by this module
# PowerShellHostVersion = ''

# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# DotNetFrameworkVersion = ''

# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# CLRVersion = ''

# Type files (.ps1xml) to be loaded when importing this module
# TypesToProcess = @()
# Processor architecture (None, X86, Amd64) required by this module
# ProcessorArchitecture = ''

# Format files (.ps1xml) to be loaded when importing this module
# FormatsToProcess = @()
# Modules that must be imported into the global environment prior to importing this module
# RequiredModules = @()

# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
# NestedModules = @()
# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()

# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
FunctionsToExport = '*'
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()

# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
CmdletsToExport = '*'
# Type files (.ps1xml) to be loaded when importing this module
# TypesToProcess = @()

# Variables to export from this module
VariablesToExport = '*'
# Format files (.ps1xml) to be loaded when importing this module
# FormatsToProcess = @()

# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
AliasesToExport = '*'
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
# NestedModules = @()

# DSC resources to export from this module
# DscResourcesToExport = @()
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
FunctionsToExport = '*'

# List of all modules packaged with this module
# ModuleList = @()
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
CmdletsToExport = '*'

# List of all files packaged with this module
# FileList = @()
# Variables to export from this module
VariablesToExport = '*'

# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
PrivateData = @{
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
AliasesToExport = '*'

PSData = @{
# DSC resources to export from this module
# DscResourcesToExport = @()

# Tags applied to this module. These help with module discovery in online galleries.
# Tags = @()
# List of all modules packaged with this module
# ModuleList = @()

# A URL to the license for this module.
# LicenseUri = ''
# List of all files packaged with this module
# FileList = @()

# A URL to the main website for this project.
# ProjectUri = ''
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
PrivateData = @{
PSData = @{
# Tags applied to this module. These help with module discovery in online galleries.
Tags = @('CosmosDB', 'Azure')

# A URL to an icon representing this module.
# IconUri = ''
# A URL to the license for this module.
LicenseUri = 'https://github.com/PlagueHO/CosmosDB/blob/master/LICENSE'

# ReleaseNotes of this module
# ReleaseNotes = ''
# A URL to the main website for this project.
ProjectUri = 'https://github.com/PlagueHO/CosmosDB'

} # End of PSData hashtable
# A URL to an icon representing this module.
# IconUri = ''

} # End of PrivateData hashtable
# ReleaseNotes of this module
ReleaseNotes = 'https://github.com/PlagueHO/CosmosDB/blob/master/RELEASENOTES.md'
} # End of PSData hashtable
} # End of PrivateData hashtable

# HelpInfo URI of this module
# HelpInfoURI = ''

# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''
# HelpInfo URI of this module
# HelpInfoURI = ''

# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''
}





0 comments on commit 9d61413

Please sign in to comment.