martha 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/.DS_Store +0 -0
- data/README.md +10 -1
- data/lib/martha/builder.rb +2 -0
- data/lib/martha/version.rb +1 -1
- data/pkg/.DS_Store +0 -0
- data/pkg/martha-0.0.1.gem +0 -0
- data/pkg/martha-0.0.2.gem +0 -0
- metadata +5 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dce804fd31067e06d89dc5dcfb227b487e4b3d1f
|
4
|
+
data.tar.gz: 40ee44bd3664db236b1afca37fb6eea8fa21fe39
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f053c09ac4804c864fd2a0994781b2b61aa4c39ca3852cb95d371a26a51275973a9a190bf5f357f7e0b78fc0c0fd17ef7a42affd67ab85ce650c0a35f2a912d
|
7
|
+
data.tar.gz: 80859b3239a7c19435e1da41fb45d24480c974842da57976b48a2aed197b49be2436dc44c92ce27a58e3b06ee04c3a097c03dfd7ea6a76fdc2082de37277022c
|
data/.DS_Store
ADDED
Binary file
|
data/README.md
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+

|
1
2
|
# Martha
|
2
3
|
Gem that documents code/software for a better organisation and understanding of it by developers.
|
3
4
|
|
@@ -13,7 +14,15 @@ Gem that documents code/software for a better organisation and understanding of
|
|
13
14
|
Pre-install:
|
14
15
|
- Windows Users: Install ruby environment, we recommend [RubyInstaller](http://rubyinstaller.org/downloads/) and after install [Development Kit](https://github.com/oneclick/rubyinstaller/wiki/Development-Kit) and now you can use Ruby's gems.
|
15
16
|
|
16
|
-
|
17
|
+
- Install gems:
|
18
|
+
```console
|
19
|
+
% gem install pry
|
20
|
+
```
|
21
|
+
```console
|
22
|
+
% gem install nokogiri
|
23
|
+
```
|
24
|
+
Install:
|
25
|
+
- To install the gem you can just run the following command:
|
17
26
|
|
18
27
|
```console
|
19
28
|
% gem install martha
|
data/lib/martha/builder.rb
CHANGED
@@ -26,9 +26,11 @@ module Martha
|
|
26
26
|
if file_name.split('.')[1] == "cpp"
|
27
27
|
puts "I found #{method_quantity_cpp} undocumented method(s)/function(s)\n\n"
|
28
28
|
document_methods_cpp
|
29
|
+
puts "Finished documenting method(s)/function(s)"
|
29
30
|
else
|
30
31
|
puts "I found #{method_quantity_rb} undocumented method(s)/function(s)\n\n"
|
31
32
|
document_methods_rb
|
33
|
+
puts "Finished documenting method(s)/function(s)"
|
32
34
|
end
|
33
35
|
else
|
34
36
|
error
|
data/lib/martha/version.rb
CHANGED
data/pkg/.DS_Store
ADDED
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: martha
|
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 Elizalde
|
@@ -118,6 +118,7 @@ executables:
|
|
118
118
|
extensions: []
|
119
119
|
extra_rdoc_files: []
|
120
120
|
files:
|
121
|
+
- ".DS_Store"
|
121
122
|
- ".travis.yml"
|
122
123
|
- CODE_OF_CONDUCT.md
|
123
124
|
- Gemfile
|
@@ -132,6 +133,9 @@ files:
|
|
132
133
|
- lib/martha/builder.rb
|
133
134
|
- lib/martha/version.rb
|
134
135
|
- martha.gemspec
|
136
|
+
- pkg/.DS_Store
|
137
|
+
- pkg/martha-0.0.1.gem
|
138
|
+
- pkg/martha-0.0.2.gem
|
135
139
|
homepage: https://github.com/VictorElizalde/Martha
|
136
140
|
licenses:
|
137
141
|
- MIT
|