Skip to content

Commit

Permalink
Added license header, Updated copyright year
Browse files Browse the repository at this point in the history
Each file needed a license header
The copyright needed updated

Signed-off-by: Charlie Pitkin <[email protected]>
  • Loading branch information
Charlie Pitkin committed Aug 13, 2019
1 parent 52b3477 commit b35ed60
Show file tree
Hide file tree
Showing 18 changed files with 103 additions and 12 deletions.
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"licenser.license": "MIT",
"licenser.author": "FINE Design Group, Inc.",
"licenser.projectName": "rails-jenkins-shared-libraries",
"licenser.useSingleLineStyle": true
}
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [v2.0.1] - TDB

### Updated

- License copyright year

### Added

- Licensing header to all files

## [v2.0.0] - 6-1-2018

### Added
Expand Down
7 changes: 6 additions & 1 deletion Jenkinsfile.clean_example
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Copyright (c) 2019 FINE Design Group, Inc.
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

node {
try {
stage('Volume Clean') {
Expand All @@ -10,4 +15,4 @@ node {
throw e
}
slackSend channel: '#devops', failOnError: true, color: 'good', message: 'Jenkins Docker cleanup run *SUCCESSFUL*!'
}
}
7 changes: 6 additions & 1 deletion Jenkinsfile.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Copyright (c) 2019 FINE Design Group, Inc.
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

rails {
MYSQL_DATABASE = 'db_name'
MYSQL_USER = 'db_user'
Expand All @@ -21,4 +26,4 @@ rails {
SKIP_DEPLOY = 'false'
DOWNSTREAM_JOB_NAME = 'job_name'
DOWNSTREAM_JOB_PARAMS = [string(name: 'rubyVersion', value: version), string(name: 'checksum', value: checksum))]
}
}
6 changes: 3 additions & 3 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)
MIT License

Copyright (c) 2017 FINE Design Group, Inc.
Copyright (c) 2019 FINE Design Group, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
5 changes: 5 additions & 0 deletions vars/rails.groovy
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Copyright (c) 2019 FINE Design Group, Inc.
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

#!/usr/bin/env groovy

def call(body) {
Expand Down
7 changes: 6 additions & 1 deletion vars/railsDeploy.groovy
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Copyright (c) 2019 FINE Design Group, Inc.
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

#!/usr/bin/env groovy

def call(Map config) {
Expand Down Expand Up @@ -69,4 +74,4 @@ def call(Map config) {
}
throw e
}
}
}
7 changes: 6 additions & 1 deletion vars/railsDeployDocker.groovy
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Copyright (c) 2019 FINE Design Group, Inc.
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

#!/usr/bin/env groovy

def call(Map config) {
Expand Down Expand Up @@ -67,4 +72,4 @@ def call(Map config) {
}
throw e
}
}
}
5 changes: 5 additions & 0 deletions vars/railsDocker.groovy
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Copyright (c) 2019 FINE Design Group, Inc.
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

#!/usr/bin/env groovy

def call(Map config) {
Expand Down
7 changes: 6 additions & 1 deletion vars/railsDownstreamJob.groovy
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Copyright (c) 2019 FINE Design Group, Inc.
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

#!/usr/bin/env groovy

def call(Map config) {
Expand All @@ -20,4 +25,4 @@ def call(Map config) {
}
throw e
}
}
}
7 changes: 6 additions & 1 deletion vars/railsInstallDeps.groovy
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Copyright (c) 2019 FINE Design Group, Inc.
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

#!/usr/bin/env groovy

def call(Map config) {
Expand All @@ -16,4 +21,4 @@ def call(Map config) {
}
throw e
}
}
}
7 changes: 6 additions & 1 deletion vars/railsInstallDepsDocker.groovy
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Copyright (c) 2019 FINE Design Group, Inc.
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

#!/usr/bin/env groovy

def call(Map config) {
Expand All @@ -16,4 +21,4 @@ def call(Map config) {
}
throw e
}
}
}
7 changes: 6 additions & 1 deletion vars/railsLoadSchemaDocker.groovy
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Copyright (c) 2019 FINE Design Group, Inc.
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

#!/usr/bin/env groovy

def call(Map config) {
Expand All @@ -16,4 +21,4 @@ def call(Map config) {
}
throw e
}
}
}
5 changes: 5 additions & 0 deletions vars/railsOtherBuildEnvs.groovy
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Copyright (c) 2019 FINE Design Group, Inc.
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

#!/usr/bin/env groovy

@NonCPS
Expand Down
5 changes: 5 additions & 0 deletions vars/railsOtherBuildEnvsDocker.groovy
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Copyright (c) 2019 FINE Design Group, Inc.
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

#!/usr/bin/env groovy

@NonCPS
Expand Down
5 changes: 5 additions & 0 deletions vars/railsRvm.groovy
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Copyright (c) 2019 FINE Design Group, Inc.
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

#!/usr/bin/env groovy

def call(String commands) {
Expand Down
5 changes: 5 additions & 0 deletions vars/railsSlack.groovy
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Copyright (c) 2019 FINE Design Group, Inc.
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

#!/usr/bin/env groovy
import hudson.tasks.test.AbstractTestResultAction;

Expand Down
7 changes: 6 additions & 1 deletion vars/railsTestsDocker.groovy
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Copyright (c) 2019 FINE Design Group, Inc.
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT

#!/usr/bin/env groovy

def call(Map config) {
Expand Down Expand Up @@ -29,4 +34,4 @@ def call(Map config) {
}
throw e
}
}
}

0 comments on commit b35ed60

Please sign in to comment.