Skip to content

Commit b35ed60

Browse files
author
Charlie Pitkin
committed
Added license header, Updated copyright year
Each file needed a license header The copyright needed updated Signed-off-by: Charlie Pitkin <charlie@wearefine.com>
1 parent 52b3477 commit b35ed60

18 files changed

+103
-12
lines changed

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"licenser.license": "MIT",
3+
"licenser.author": "FINE Design Group, Inc.",
4+
"licenser.projectName": "rails-jenkins-shared-libraries",
5+
"licenser.useSingleLineStyle": true
6+
}

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [v2.0.1] - TDB
9+
10+
### Updated
11+
12+
- License copyright year
13+
14+
### Added
15+
16+
- Licensing header to all files
17+
818
## [v2.0.0] - 6-1-2018
919

1020
### Added

Jenkinsfile.clean_example

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright (c) 2019 FINE Design Group, Inc.
2+
//
3+
// This software is released under the MIT License.
4+
// https://opensource.org/licenses/MIT
5+
16
node {
27
try {
38
stage('Volume Clean') {
@@ -10,4 +15,4 @@ node {
1015
throw e
1116
}
1217
slackSend channel: '#devops', failOnError: true, color: 'good', message: 'Jenkins Docker cleanup run *SUCCESSFUL*!'
13-
}
18+
}

Jenkinsfile.example

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright (c) 2019 FINE Design Group, Inc.
2+
//
3+
// This software is released under the MIT License.
4+
// https://opensource.org/licenses/MIT
5+
16
rails {
27
MYSQL_DATABASE = 'db_name'
38
MYSQL_USER = 'db_user'
@@ -21,4 +26,4 @@ rails {
2126
SKIP_DEPLOY = 'false'
2227
DOWNSTREAM_JOB_NAME = 'job_name'
2328
DOWNSTREAM_JOB_PARAMS = [string(name: 'rubyVersion', value: version), string(name: 'checksum', value: checksum))]
24-
}
29+
}

LICENSE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
The MIT License (MIT)
1+
MIT License
22

3-
Copyright (c) 2017 FINE Design Group, Inc.
3+
Copyright (c) 2019 FINE Design Group, Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

vars/rails.groovy

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright (c) 2019 FINE Design Group, Inc.
2+
//
3+
// This software is released under the MIT License.
4+
// https://opensource.org/licenses/MIT
5+
16
#!/usr/bin/env groovy
27

38
def call(body) {

vars/railsDeploy.groovy

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright (c) 2019 FINE Design Group, Inc.
2+
//
3+
// This software is released under the MIT License.
4+
// https://opensource.org/licenses/MIT
5+
16
#!/usr/bin/env groovy
27

38
def call(Map config) {
@@ -69,4 +74,4 @@ def call(Map config) {
6974
}
7075
throw e
7176
}
72-
}
77+
}

vars/railsDeployDocker.groovy

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright (c) 2019 FINE Design Group, Inc.
2+
//
3+
// This software is released under the MIT License.
4+
// https://opensource.org/licenses/MIT
5+
16
#!/usr/bin/env groovy
27

38
def call(Map config) {
@@ -67,4 +72,4 @@ def call(Map config) {
6772
}
6873
throw e
6974
}
70-
}
75+
}

vars/railsDocker.groovy

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright (c) 2019 FINE Design Group, Inc.
2+
//
3+
// This software is released under the MIT License.
4+
// https://opensource.org/licenses/MIT
5+
16
#!/usr/bin/env groovy
27

38
def call(Map config) {

vars/railsDownstreamJob.groovy

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright (c) 2019 FINE Design Group, Inc.
2+
//
3+
// This software is released under the MIT License.
4+
// https://opensource.org/licenses/MIT
5+
16
#!/usr/bin/env groovy
27

38
def call(Map config) {
@@ -20,4 +25,4 @@ def call(Map config) {
2025
}
2126
throw e
2227
}
23-
}
28+
}

vars/railsInstallDeps.groovy

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright (c) 2019 FINE Design Group, Inc.
2+
//
3+
// This software is released under the MIT License.
4+
// https://opensource.org/licenses/MIT
5+
16
#!/usr/bin/env groovy
27

38
def call(Map config) {
@@ -16,4 +21,4 @@ def call(Map config) {
1621
}
1722
throw e
1823
}
19-
}
24+
}

vars/railsInstallDepsDocker.groovy

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright (c) 2019 FINE Design Group, Inc.
2+
//
3+
// This software is released under the MIT License.
4+
// https://opensource.org/licenses/MIT
5+
16
#!/usr/bin/env groovy
27

38
def call(Map config) {
@@ -16,4 +21,4 @@ def call(Map config) {
1621
}
1722
throw e
1823
}
19-
}
24+
}

vars/railsLoadSchemaDocker.groovy

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright (c) 2019 FINE Design Group, Inc.
2+
//
3+
// This software is released under the MIT License.
4+
// https://opensource.org/licenses/MIT
5+
16
#!/usr/bin/env groovy
27

38
def call(Map config) {
@@ -16,4 +21,4 @@ def call(Map config) {
1621
}
1722
throw e
1823
}
19-
}
24+
}

vars/railsOtherBuildEnvs.groovy

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright (c) 2019 FINE Design Group, Inc.
2+
//
3+
// This software is released under the MIT License.
4+
// https://opensource.org/licenses/MIT
5+
16
#!/usr/bin/env groovy
27

38
@NonCPS

vars/railsOtherBuildEnvsDocker.groovy

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright (c) 2019 FINE Design Group, Inc.
2+
//
3+
// This software is released under the MIT License.
4+
// https://opensource.org/licenses/MIT
5+
16
#!/usr/bin/env groovy
27

38
@NonCPS

vars/railsRvm.groovy

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright (c) 2019 FINE Design Group, Inc.
2+
//
3+
// This software is released under the MIT License.
4+
// https://opensource.org/licenses/MIT
5+
16
#!/usr/bin/env groovy
27

38
def call(String commands) {

vars/railsSlack.groovy

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright (c) 2019 FINE Design Group, Inc.
2+
//
3+
// This software is released under the MIT License.
4+
// https://opensource.org/licenses/MIT
5+
16
#!/usr/bin/env groovy
27
import hudson.tasks.test.AbstractTestResultAction;
38

vars/railsTestsDocker.groovy

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
// Copyright (c) 2019 FINE Design Group, Inc.
2+
//
3+
// This software is released under the MIT License.
4+
// https://opensource.org/licenses/MIT
5+
16
#!/usr/bin/env groovy
27

38
def call(Map config) {
@@ -29,4 +34,4 @@ def call(Map config) {
2934
}
3035
throw e
3136
}
32-
}
37+
}

0 commit comments

Comments
 (0)