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 +4 -4
- data/CHANGELOG.md +11 -0
- data/Gemfile.lock +1 -1
- data/README.md +15 -1
- data/bin/flagdoc +0 -1
- data/flagdoc.gemspec +7 -1
- data/lib/flagdoc/version.rb +1 -1
- metadata +7 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: df20cf946d3eb6f53ff1f424da50dd21b2cba5c25436bca33744b9ecf6064451
|
|
4
|
+
data.tar.gz: db00e7e6bdc1b95296d7cd993f971baab7fc6f0fb196c76092a5e331260f4583
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
data/README.md
CHANGED
|
@@ -18,7 +18,21 @@
|
|
|
18
18
|
|
|
19
19
|
---
|
|
20
20
|
|
|
21
|
-
Flagdoc is an alternative to the
|
|
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
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 = '
|
|
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'
|
data/lib/flagdoc/version.rb
CHANGED
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.
|
|
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:
|
|
139
|
+
summary: Flagdoc is an alternative to the rake notes and inspired by the Yardoc syntax
|
|
136
140
|
test_files: []
|