Skip to content

Commit b1d5a99

Browse files
authored
Merge pull request #15 from FundingCircle/bsd-license
Attach correct license
2 parents 0808e03 + e13dc9e commit b1d5a99

4 files changed

Lines changed: 37 additions & 5 deletions

File tree

LICENSE.txt

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Copyright (c) 2016, Funding Circle
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are met:
6+
7+
1. Redistributions of source code must retain the above copyright notice, this
8+
list of conditions and the following disclaimer.
9+
10+
2. Redistributions in binary form must reproduce the above copyright notice,
11+
this list of conditions and the following disclaimer in the documentation
12+
and/or other materials provided with the distribution.
13+
14+
3. Neither the name of the copyright holder nor the names of its contributors
15+
may be used to endorse or promote products derived from this software without
16+
specific prior written permission.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,9 @@ Should result in:
3232
rspec-support | x | 3.0.4
3333
hellgrid | x | x
3434
```
35+
36+
## License
37+
38+
Copyright © 2016 Funding Circle.
39+
40+
Distributed under the BSD 3-Clause License.

hellgrid.gemspec

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,16 @@ require 'hellgrid/version'
77
Gem::Specification.new do |s|
88
s.name = 'hellgrid'
99
s.version = Hellgrid::VERSION
10-
s.date = '2016-03-28'
10+
s.date = '2016-09-20'
1111
s.summary = 'Gem version dependency matrix'
12-
s.description = ''
1312
s.authors = ['Deyan Dobrinov', 'Aleksandar Ivanov']
14-
s.email = ['deyan.dobrinov@gmail.com', 'aivanov92@gmail.com']
13+
s.email = ['engineering+hellgrid@fundingcircle.com']
1514
s.files = Dir.chdir(project_root) { Dir['lib/**/*.rb'] + Dir['bin/*'] + Dir['spec/**/*.rb'] + %w(Gemfile Gemfile.lock README.md hellgrid.gemspec) }
1615
s.executables = s.files.grep(/^bin\//) { |f| File.basename(f) }
1716
s.test_files = s.files.grep(/^spec\//)
1817
s.require_paths = ['lib']
1918
s.homepage = 'https://github.com/FundingCircle/hellgrid'
20-
s.license = 'MIT'
19+
s.license = 'BSD-3'
2120

2221
s.add_development_dependency 'rspec', '~> 3.4', '>= 3.4.0'
2322
s.add_development_dependency 'bundler', '~> 1.11', '>= 1.11.0'

lib/hellgrid/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Hellgrid
2-
VERSION = '0.1.0'
2+
VERSION = '0.2.0'
33
end

0 commit comments

Comments
 (0)