ossy 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/ossy/cli/releases/generate.rb +2 -0
- data/lib/ossy/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 692163075005596e24fcd369ab7a65bae9cf32fbaa9fd4ba7443059b398d7744
|
4
|
+
data.tar.gz: aa9d30379da6adcace2c88605dd781e40395fb04eca3d483402f1214edcc8281
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba6e94b22f3309d56f2df084ba0b27b4069d47aaa13b0789799d7b9b29b291dc64a974157ce90f74f0fbd2bbb9ae774acec296894ed0f885ce2dd0b810a2276c
|
7
|
+
data.tar.gz: 131df202b10b86c1d2d147ce73c44bb8a9bc6de334afde09bec4c13f9d342344b51964bea6357d00e2ec176fa4cb14e91f545f5e053270d4562b4366a19c02df
|
@@ -37,6 +37,8 @@ module Ossy
|
|
37
37
|
argument :output_path, required: true, desc: "The path to the output md file"
|
38
38
|
argument :template_path, required: true, desc: "The path to the changelog ERB template"
|
39
39
|
|
40
|
+
option :data_path, required: false, desc: "Optional path to additional data yaml file"
|
41
|
+
|
40
42
|
def call(config_path:, output_path:, template_path:, data_path: nil)
|
41
43
|
puts "Generating #{output_path} from #{config_path} using #{template_path}"
|
42
44
|
|
data/lib/ossy/version.rb
CHANGED