flagdoc 0.1.1 → 0.2.0

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: 66bb3e6afa2f66c4744131898a5a8177c5cfde51b0223077766253ae8860ac86
4
- data.tar.gz: 7d3a4864e0ded1194139fcc00d8e6b7a96cfc3628a8595b0447a926974a47dba
3
+ metadata.gz: df20cf946d3eb6f53ff1f424da50dd21b2cba5c25436bca33744b9ecf6064451
4
+ data.tar.gz: db00e7e6bdc1b95296d7cd993f971baab7fc6f0fb196c76092a5e331260f4583
5
5
  SHA512:
6
- metadata.gz: 8ae77886b49cb1841e5939ac979f51f32542cc7cdc228ba1789f5662174e037fc4e35706615985263bd3743fdccb6107c661b9d8619b5f081b0d510afc75ebde
7
- data.tar.gz: 31ce8298222284510cdbfaa504efe0bbc0622e9d27e81d1b87a635eec14d004aea0c3b8981517c45a156bdb6ef58c87bb670b5fc148a0d44fac3e780c3b34166
6
+ metadata.gz: 64b90e3b13c74727f832e92303e1be40da76432d988ba1c39efc30e93f7a6e21e98d2278805203907505de07846d3f14397914cb0b3e706505be22f6d6bd1272
7
+ data.tar.gz: 5c1aefd5fbc7e691f0e8312413a0714eb86ee9d77f1cdc807ae68f6cd35a6a9c786faffc591e248434f602b044f48f37d09784fb810ce20ccba2c140f3a75c7c
data/CHANGELOG.md CHANGED
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [Unreleased]
8
+
9
+ ## [0.2.0] - 2018-09-11
10
+ ### Change
11
+ - Remove pry from bin/flagdoc
12
+ - Gemspec summary
13
+
14
+ ### Added
15
+ - Metadata (documentation, issues, changelog, source)
16
+ - Gem installation documentation
17
+
7
18
  ## [0.1.1] - 2018-09-11
8
19
  ### Fixed
9
20
  - Rubygem same version error
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- flagdoc (0.1.1)
4
+ flagdoc (0.2.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -18,7 +18,21 @@
18
18
 
19
19
  ---
20
20
 
21
- Flagdoc is an alternative to the rails notes inspired by the Yardoc syntax. Now, you can add customs flags with priority level
21
+ Flagdoc is an alternative to the rake notes and inspired by the Yardoc syntax. Now, you can add customs flags with priority level !
22
+
23
+ ## Installation
24
+
25
+ ```sh
26
+ gem install flagdoc
27
+ ```
28
+
29
+ ## Usage
30
+
31
+ ```sh
32
+ flagdoc
33
+ ```
34
+
35
+ ## Example
22
36
 
23
37
  **./example/file.rb**
24
38
 
data/bin/flagdoc CHANGED
@@ -2,7 +2,6 @@
2
2
 
3
3
  require 'bundler/setup'
4
4
  require_relative '../lib/flagdoc'
5
- require 'pry'
6
5
 
7
6
  store = Flagdoc::Store.new
8
7
 
data/flagdoc.gemspec CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ['Nicolas LE CHENIC']
9
9
  spec.email = ['pro.nicolaslechenic@gmail.com']
10
10
 
11
- spec.summary = 'Displays the flags written in your ruby ​​code'
11
+ spec.summary = 'Flagdoc is an alternative to the rake notes and inspired by the Yardoc syntax'
12
12
  spec.homepage = 'https://github.com/nicolaslechenic/flagdoc'
13
13
  spec.files =
14
14
  `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec)/}) }
@@ -16,6 +16,12 @@ Gem::Specification.new do |spec|
16
16
  spec.license = 'MIT'
17
17
  spec.executables = ['flagdoc']
18
18
  spec.require_paths = ['lib']
19
+ spec.metadata = {
20
+ 'bug_tracker_uri' => "https://github.com/nicolaslechenic/flagdoc/issues",
21
+ 'changelog_uri' => "https://github.com/nicolaslechenic/flagdoc/CHANGELOG.md",
22
+ 'documentation_uri' => 'https://github.com/nicolaslechenic/flagdoc',
23
+ 'source_code_uri' => 'https://github.com/nicolaslechenic/flagdoc'
24
+ }
19
25
 
20
26
  spec.add_development_dependency 'bundler', '~> 1.16'
21
27
  spec.add_development_dependency 'pry', '~> 0.11'
@@ -2,5 +2,5 @@ module Flagdoc
2
2
  # Flagdoc version
3
3
  #
4
4
  # @since 0.1.0
5
- VERSION = '0.1.1'.freeze
5
+ VERSION = '0.2.0'.freeze
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flagdoc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicolas LE CHENIC
@@ -112,7 +112,11 @@ files:
112
112
  homepage: https://github.com/nicolaslechenic/flagdoc
113
113
  licenses:
114
114
  - MIT
115
- metadata: {}
115
+ metadata:
116
+ bug_tracker_uri: https://github.com/nicolaslechenic/flagdoc/issues
117
+ changelog_uri: https://github.com/nicolaslechenic/flagdoc/CHANGELOG.md
118
+ documentation_uri: https://github.com/nicolaslechenic/flagdoc
119
+ source_code_uri: https://github.com/nicolaslechenic/flagdoc
116
120
  post_install_message:
117
121
  rdoc_options: []
118
122
  require_paths:
@@ -132,5 +136,5 @@ rubyforge_project:
132
136
  rubygems_version: 2.7.6
133
137
  signing_key:
134
138
  specification_version: 4
135
- summary: Displays the flags written in your ruby ​​code
139
+ summary: Flagdoc is an alternative to the rake notes and inspired by the Yardoc syntax
136
140
  test_files: []