post_mdize 0.2.3 → 0.2.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b2327a6be1a1d150e4b1b8662dfda8375c18ddc7028c1a18d02d75fa4a3d06b1
4
- data.tar.gz: 9707944aac10d46d8e8ce545fe492ae64f1e8c880e4994334b2be1e51aeb2190
3
+ metadata.gz: b068949c7e14b50450e2e9136a927e59664e260d14a915b4fe22b6933d5045d6
4
+ data.tar.gz: f3507e86ef3804427dd2caadc7783fefb5abb10474de166882beab46096d6e33
5
5
  SHA512:
6
- metadata.gz: 572c62dbae1c36df9accc67fb7d9e154b9e3662334510f6f8d634297f424e89763a7e36f73c35efdf3f3a904d506f41c154e7a7a77518d3a0b0df92cf3105b12
7
- data.tar.gz: c444ea3c70c5fd22b2b232371585cd4c996502e4e7cfce71ba2e9eaa7891fc570e7d752a3d9e4bb0674bbb22d3019e3052f92c8ea5f0e776f3eb8636a52d9092
6
+ metadata.gz: b4dfd32bb0bad95931379c2c6f45b987b965b0c75d801fbe170e9de8ca6ba7083f98e6d863e37e31cf3eb6d73aad29f447684b605d4e01e78bc38eddb900c4dc
7
+ data.tar.gz: 552f3de441840501ea36dc32ec112d8732504f5cd58da9f4fdfeb758c8f6d862a64accc14aab1f2d03344e4cf5f4750d5f615b6970678991ebeef6ffd9b28e4f
data/README.md CHANGED
@@ -19,23 +19,15 @@ Or install it yourself as:
19
19
  $ gem install post_mdize
20
20
 
21
21
  ## Usage
22
+ ```
23
+ post_mdize input.json output.md
24
+ ```
22
25
 
23
- TODO: Write usage instructions here
24
-
25
- ## Development
26
-
27
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
28
-
29
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
30
26
 
31
27
  ## Contributing
32
28
 
33
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/post_mdize. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/post_mdize/blob/master/CODE_OF_CONDUCT.md).
29
+ Bug reports and pull requests are welcome on GitHub at https://github.com/KanielOutis/post_mdize. This project is intended to be a safe, welcoming space for collaboration.
34
30
 
35
31
  ## License
36
32
 
37
33
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
38
-
39
- ## Code of Conduct
40
-
41
- Everyone interacting in the PostMdize project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/post_mdize/blob/master/CODE_OF_CONDUCT.md).
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PostMdize
4
- VERSION = "0.2.3"
4
+ VERSION = "0.2.4"
5
5
  end
data/post_mdize.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
 
11
11
  spec.summary = "SOME SUMMARY"
12
12
  spec.description = "Gem for generating README MD documentation from postman collection documentation, from json to md"
13
- spec.homepage = 'https://rubygems.org/gems/post_mdize'
13
+ spec.homepage = 'https://github.com/KanielOutis/post_mdize'
14
14
  spec.license = "MIT"
15
15
  spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
16
16
 
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
 
19
19
  spec.metadata["homepage_uri"] = spec.homepage
20
20
  spec.metadata["source_code_uri"] = spec.homepage
21
- spec.metadata["changelog_uri"] = spec.homepage
21
+ spec.metadata["changelog_uri"] = 'https://github.com/KanielOutis/post_mdize/blob/master/CHANGELOG.md'
22
22
 
23
23
  # Specify which files should be added to the gem when it is released.
24
24
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: post_mdize
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - mokan
@@ -34,13 +34,13 @@ files:
34
34
  - lib/post_mdize.rb
35
35
  - lib/post_mdize/version.rb
36
36
  - post_mdize.gemspec
37
- homepage: https://rubygems.org/gems/post_mdize
37
+ homepage: https://github.com/KanielOutis/post_mdize
38
38
  licenses:
39
39
  - MIT
40
40
  metadata:
41
- homepage_uri: https://rubygems.org/gems/post_mdize
42
- source_code_uri: https://rubygems.org/gems/post_mdize
43
- changelog_uri: https://rubygems.org/gems/post_mdize
41
+ homepage_uri: https://github.com/KanielOutis/post_mdize
42
+ source_code_uri: https://github.com/KanielOutis/post_mdize
43
+ changelog_uri: https://github.com/KanielOutis/post_mdize/blob/master/CHANGELOG.md
44
44
  post_install_message:
45
45
  rdoc_options: []
46
46
  require_paths: