Skip to content

Commit

Permalink
Update LICENSE and README (#6)
Browse files Browse the repository at this point in the history
* Update and rename LICENSE to LICENSE.md

* Update README.md

* Update LICENSE.md

* Update LICENSE.md

* Update highline_wrapper.gemspec

* Update version.rb
  • Loading branch information
emmahsax authored Jun 24, 2021
1 parent e40650b commit 4681e80
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 26 deletions.
22 changes: 0 additions & 22 deletions LICENSE

This file was deleted.

11 changes: 11 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Copyright (c) 2021 Emma Sax. All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this list of conditions, and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions, and the following disclaimer in the documentation and/or other materials provided with the distribution.

3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -422,8 +422,6 @@ To submit a feature request, bug ticket, etc, please submit an official [GitHub

To report any security vulnerabilities, please view this project's [Security Policy](https://github.com/emmahsax/highline_wrapper/security/policy).

When interacting with this repository, please follow [Contributor Covenant's Code of Conduct](https://contributor-covenant.org).

## Releasing

To make a new release of this gem:
Expand All @@ -436,3 +434,13 @@ To make a new release of this gem:
6. Run `rm *.gem` to clean up your local repository

To set up your local machine to push to RubyGems via the API, see the [RubyGems documentation](https://guides.rubygems.org/publishing/#publishing-to-rubygemsorg).

---

### Licensing

For information on licensing, please see [LICENSE.md](https://github.com/emmahsax/highline_wrapper/blob/main/LICENSE.md).

### Code of Conduct

When interacting with this repository, please follow [Contributor Covenant's Code of Conduct](https://contributor-covenant.org).
2 changes: 1 addition & 1 deletion highline_wrapper.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Gem::Specification.new do |gem|
gem.description = 'Making it easier to ask simple questions, such as multiple choice ' \
'questions, yes/no questions, etc, using HighLine'
gem.homepage = 'https://github.com/emmahsax/highline_wrapper'
gem.license = 'MIT'
gem.license = 'BSD-3-Clause'
gem.required_ruby_version = '>= 1.9.3'

gem.executables = Dir['bin/*'].map { |f| File.basename(f) }
Expand Down
2 changes: 1 addition & 1 deletion lib/highline_wrapper/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

class HighlineWrapper
VERSION = '1.2.0'
VERSION = '1.2.1'
end

0 comments on commit 4681e80

Please sign in to comment.