Skip to content

Commit 68284d7

Browse files
author
gdgate
authored
Merge pull request #1741 from sangtm/TMA-1717-remove-erubis
LR-428: Update the license file for Gooddata-ruby Reviewed-by: https://github.com/danh-ung
2 parents 6c89645 + 5d47bf8 commit 68284d7

8 files changed

Lines changed: 4478 additions & 5461 deletions

File tree

DEPENDENCIES.md

Lines changed: 0 additions & 880 deletions
This file was deleted.

EULA.docx

-29.1 KB
Binary file not shown.

LICENSE

Lines changed: 16 additions & 4482 deletions
Large diffs are not rendered by default.

LICENSE.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# encoding: UTF-8
22
#
3-
# Copyright (c) 2010-2017 GoodData Corporation. All rights reserved.
3+
# Copyright (c) 2010-2021 GoodData Corporation. All rights reserved.
44
# This source code is licensed under the BSD-style license found in the
55
# LICENSE file in the root directory of this source tree.

LICENSE_FOR_RUBY_SDK_COMPONENT.txt

Lines changed: 4423 additions & 0 deletions
Large diffs are not rendered by default.

NOTICES.txt

Lines changed: 31 additions & 95 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,5 +95,5 @@ For full contributor info see [contributors page](https://github.com/gooddata/go
9595

9696
## Copyright
9797

98-
c) 2010-2021 GoodData Corporation
99-
This repository is governed by the terms and conditions in the EULA. This repository contains a number of open source packages detailed in NOTICES, including the GoodData Ruby SDK, which is licensed under the BSD-3-Clause license and contains additional open source components detailed in the file called LICENSE FOR RUBY SDK COMPONENT.
98+
(c) 2010-2021 GoodData Corporation
99+
This repository is governed by the terms and conditions in the LICENSE. This repository contains a number of open source packages detailed in NOTICES, including the GoodData Ruby SDK, which is licensed under the BSD-3-Clause license and contains additional open source components detailed in the file called LICENSE_FOR_RUBY_SDK_COMPONENT.

Rakefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@ namespace :gem do
3333
desc "Release gem version #{GoodData::VERSION} to rubygems"
3434
task :release do
3535
gem = "gooddata-#{GoodData::VERSION}.gem"
36-
36+
origin_license_file = 'LICENSE'
37+
new_license_file = 'LICENSE_FOR_RUBY_SDK_COMPONENT.txt'
38+
File.delete(origin_license_file) if File.exist?(origin_license_file)
39+
File.cp(new_license_file, origin_license_file) if File.exists?(new_license_file)
40+
puts "Copied file #{new_license_file} to #{origin_license_file}"
3741
puts "Building #{gem} ..."
3842
res = `gem build ./gooddata.gemspec`
3943
file = res.match('File: (.*)')[1]

0 commit comments

Comments
 (0)