opensource 0.3.3 → 0.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/opensource +4 -1
- data/lib/opensource/version.rb +1 -1
- data/opensource.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a131d9206856426796b9353f66f5c57efee7422d
|
4
|
+
data.tar.gz: 0090d9f2188c09d904992a433c3ad4b0c47099e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df8d146a80479ba8b7cc663971d2e1cac301b8d5e07ffc13b96c7f6ce21af9d155f2172140c2ee093f316cd00c48bf434fe2da639094454c74025f8477384b69
|
7
|
+
data.tar.gz: f9710cd34423bc5c3a263812522c5a9e2ee8b2f5580caa2795c2d426daeec53e2ef41b0fa3c5b53d250ec203901e4ab250a6c456ab4fafaf9af56dac65accbfd
|
data/bin/opensource
CHANGED
@@ -2,10 +2,13 @@
|
|
2
2
|
# encoding: UTF-8
|
3
3
|
|
4
4
|
require 'optparse'
|
5
|
-
|
5
|
+
require './lib/opensource'
|
6
6
|
|
7
7
|
options = {}
|
8
8
|
|
9
|
+
puts 'starting'
|
10
|
+
puts "#{Dir.pwd}/templates"
|
11
|
+
puts 'ending'
|
9
12
|
LICENSES = Dir.new("#{Dir.pwd}/templates").map do |filename|
|
10
13
|
File.basename(filename, '.erb') if !['.', '..'].include?(filename)
|
11
14
|
end.compact
|
data/lib/opensource/version.rb
CHANGED
data/opensource.gemspec
CHANGED
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
|
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0")
|
17
|
-
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
17
|
+
spec.executables = ["opensource"] # spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
19
|
spec.require_paths = ["lib"]
|
20
20
|
|