apipie-postman 0.0.1 → 0.0.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/bin/apipie-postman +5 -3
- data/lib/apipie-postman.rb +0 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 70d93701760b1565a704ef515a8d4ceed67c3c8b5c14d5df4b7987f982feadfb
|
|
4
|
+
data.tar.gz: 7d132d77dda6a49acff596adbdb6e6a2a5c1ee3333e68e85c1a231b190b562af
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 694ea46d818d4d32e1f8a7569a4faf22360be8c62729177b8b95c986d7605e1594a3689148a2da0caacf14ff3e63ee1214be7785f46be044ad2dd58e496ddd6b
|
|
7
|
+
data.tar.gz: e7a3a915b6ed3b62f9f8d6aab1c9bcfb46b04cd72a637e05381d0f35269229b6944188ec3b50aacb6d8ff1d4ed4c4010f912469c636e8117c355338bc7f0a9b4
|
data/bin/apipie-postman
CHANGED
|
@@ -2,8 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
text = "desc 'Run apipie-postman'\n
|
|
4
4
|
task apipie_postman: :environment do
|
|
5
|
-
puts ApipiePostman.
|
|
6
|
-
puts 'Eat more apples!'
|
|
5
|
+
puts ApipiePostman.generate_docs
|
|
7
6
|
end"
|
|
8
7
|
|
|
9
|
-
File.open('lib/tasks/apipie_postman.rake', 'a')
|
|
8
|
+
File.open('lib/tasks/apipie_postman.rake', 'a') do |f|
|
|
9
|
+
f.truncate(0)
|
|
10
|
+
f.write(text)
|
|
11
|
+
end
|
data/lib/apipie-postman.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: apipie-postman
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Victor Motogna
|
|
@@ -30,7 +30,9 @@ dependencies:
|
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: 1.4.3
|
|
33
|
-
description:
|
|
33
|
+
description: |-
|
|
34
|
+
Generate Postman collection from apipie output.
|
|
35
|
+
Use 'bundle exec apipie-postman' and 'rake apipie_postman' to generate the docs!
|
|
34
36
|
email: vmotogna@gmail.com
|
|
35
37
|
executables:
|
|
36
38
|
- apipie-postman
|