-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
189 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
*.gem | ||
*.rbc | ||
/.config | ||
/coverage/ | ||
/InstalledFiles | ||
/pkg/ | ||
/spec/reports/ | ||
/test/tmp/ | ||
/test/version_tmp/ | ||
/tmp/ | ||
|
||
## Specific to RubyMotion: | ||
.dat* | ||
.repl_history | ||
build/ | ||
|
||
## Documentation cache and generated files: | ||
/.yardoc/ | ||
/_yardoc/ | ||
/doc/ | ||
/rdoc/ | ||
|
||
## Environment normalisation: | ||
/.bundle/ | ||
/vendor/bundle | ||
/lib/bundler/man/ | ||
|
||
# for a library or gem, you might want to ignore these files since the code is | ||
# intended to run in multiple environments; otherwise, check them in: | ||
# Gemfile.lock | ||
.ruby-version | ||
.ruby-gemset | ||
|
||
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: | ||
.rvmrc | ||
|
||
# Gladiator (Glimmer Editor) | ||
.gladiator | ||
.DS_Store | ||
|
||
|
||
|
||
#### | ||
# exclude all tmp & tmp2 and o directory (in all levels) | ||
tmp/ | ||
tmp2/ | ||
o/ | ||
|
||
######## | ||
# exclude all dbs e.g. artbase.db etc. | ||
*.db | ||
|
||
###### | ||
# exclude all zips (in /dl) | ||
*.zip | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
### 0.0.1 / 2023-01-13 | ||
|
||
* Everything is new. First release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
CHANGELOG.md | ||
Manifest.txt | ||
README.md | ||
Rakefile | ||
lib/natspec.rb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Natspec - Natural Spec(ification) Documentation Parser | ||
|
||
natspec - natural specification (comments) parser / machinery; document application binary interfaces (abis) for Ethereum & Co. (blockchain) contracts | ||
|
||
|
||
|
||
* home :: [github.com/rubycocos/blockchain](https://github.com/rubycocos/blockchain) | ||
* bugs :: [github.com/rubycocos/blockchain/issues](https://github.com/rubycocos/blockchain/issues) | ||
* gem :: [rubygems.org/gems/natspec](https://rubygems.org/gems/natspec) | ||
* rdoc :: [rubydoc.info/gems/natspec](http://rubydoc.info/gems/natspec) | ||
|
||
|
||
|
||
## Usage | ||
|
||
To be done | ||
|
||
|
||
|
||
|
||
## License | ||
|
||
The scripts are dedicated to the public domain. | ||
Use it as you please with no restrictions whatsoever. | ||
|
||
|
||
## Questions? Comments? | ||
|
||
|
||
Post them on the [D.I.Y. Punk (Pixel) Art reddit](https://old.reddit.com/r/DIYPunkArt). Thanks. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
require 'hoe' | ||
|
||
|
||
Hoe.spec 'natspec' do | ||
|
||
self.version = '0.0.1' | ||
|
||
self.summary = "natspec - natural specification (comments) parser / machinery; document application binary interfaces (abis) for Ethereum & Co. (blockchain) contracts" | ||
self.description = summary | ||
|
||
self.urls = { home: 'https://github.com/rubycocos/blockchain' } | ||
|
||
self.author = 'Gerald Bauer' | ||
self.email = '[email protected]' | ||
|
||
# switch extension to .markdown for gihub formatting | ||
self.readme_file = 'README.md' | ||
self.history_file = 'CHANGELOG.md' | ||
|
||
self.extra_deps = [ | ||
] | ||
|
||
self.licenses = ['Public Domain'] | ||
|
||
self.spec_extras = { | ||
required_ruby_version: '>= 2.3' | ||
} | ||
|
||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters