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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 32be982b109d0a45f08abc0a5005707574d96e10
4
- data.tar.gz: b7a87437035957afcdcb52b4846c20b5c3ff589a
3
+ metadata.gz: dce804fd31067e06d89dc5dcfb227b487e4b3d1f
4
+ data.tar.gz: 40ee44bd3664db236b1afca37fb6eea8fa21fe39
5
5
  SHA512:
6
- metadata.gz: 61d99cbfb204c1e76cbc5a6fbf35e02594f0e169359812d2cef843fde4973ebd21d9fa76b6888fc6771909ee93a77de373a028435523975f39482fbb63879282
7
- data.tar.gz: a61a010ebcfb5d176fe339979fad4d0000ef3f1f551b09f558ad3785fe147e7e61ffa6e518caa43085b990bcc851f00805f561a76dcffa78ca8abcd1775b07e7
6
+ metadata.gz: 4f053c09ac4804c864fd2a0994781b2b61aa4c39ca3852cb95d371a26a51275973a9a190bf5f357f7e0b78fc0c0fd17ef7a42affd67ab85ce650c0a35f2a912d
7
+ data.tar.gz: 80859b3239a7c19435e1da41fb45d24480c974842da57976b48a2aed197b49be2436dc44c92ce27a58e3b06ee04c3a097c03dfd7ea6a76fdc2082de37277022c
data/.DS_Store ADDED
Binary file
data/README.md CHANGED
@@ -1,3 +1,4 @@
1
+ ![Logo](http://orig06.deviantart.net/e1d4/f/2016/241/4/2/logo_by_sirgalahad31416-dafpswm.png)
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
- To install the gem you can just run the following command:
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
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Martha
2
- VERSION = '0.0.1'.freeze
2
+ VERSION = '0.0.2'.freeze
3
3
  end
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.1
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