opensource 1.0.0 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/History.md +11 -0
- data/lib/open_source.rb +2 -2
- data/lib/open_source/license/templates/isc.erb +6 -0
- data/lib/open_source/utilities/logging.rb +1 -1
- data/lib/open_source/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 23ee018e5a8b88d90b7969ad7bf80b7a5e3a6999
|
4
|
+
data.tar.gz: 95636a02ba8fb99ecfc2da58d839a45af7d3e455
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b4d20c116a07c859e85c1c2196c8fb8dfdf59e3b3d04572c951888a40d1fd66fe3484e9ba427e7afe5dab9fa7f42bb197ed634e501eccc3ae4fd2fc1c7a94f9
|
7
|
+
data.tar.gz: 89dd98943d572d89643aed65871e367baf1b1a4a2c01359d45afbd368b92e594228187bf33752b31e185da674fe25f70b19b2963b3ce3fccd1ac95a03c101eac
|
data/History.md
CHANGED
data/lib/open_source.rb
CHANGED
@@ -15,9 +15,9 @@ module OpenSource
|
|
15
15
|
|
16
16
|
def self.request_owner_credentials
|
17
17
|
OpenSource.logger.info("Enter full name: ")
|
18
|
-
name = gets.chomp
|
18
|
+
name = gets.chomp.strip
|
19
19
|
OpenSource.logger.info("Enter email address: ")
|
20
|
-
email = gets.chomp
|
20
|
+
email = gets.chomp.strip
|
21
21
|
|
22
22
|
{ name: name, email: email }
|
23
23
|
end
|
@@ -0,0 +1,6 @@
|
|
1
|
+
ISC License (ISC)
|
2
|
+
Copyright (c) <%= Time.now.year %>, <%= @owner.name %> <%= @owner.markdown_supported_email %>
|
3
|
+
|
4
|
+
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
|
5
|
+
|
6
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
data/lib/open_source/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opensource
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mohnish Thallavajhula
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-04-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -82,6 +82,7 @@ files:
|
|
82
82
|
- lib/open_source/license/templates/apache2.erb
|
83
83
|
- lib/open_source/license/templates/bsd.erb
|
84
84
|
- lib/open_source/license/templates/gpl3.erb
|
85
|
+
- lib/open_source/license/templates/isc.erb
|
85
86
|
- lib/open_source/license/templates/mit.erb
|
86
87
|
- lib/open_source/utilities/logging.rb
|
87
88
|
- lib/open_source/version.rb
|