Skip to content

Commit f478494

Browse files
author
devnote-dev
committed
feat: initial commit
0 parents  commit f478494

File tree

9 files changed

+100
-0
lines changed

9 files changed

+100
-0
lines changed

.ameba.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Globs:
2+
- src/**/*.cr
3+
- spec/**/*.cr
4+
5+
Layout/TrailingWhitespace:
6+
Enabled: false
7+
8+
Metrics/CyclomaticComplexity:
9+
Enabled: false

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*.cr]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 2
9+
trim_trailing_whitespace = true

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/docs/
2+
/lib/
3+
/bin/
4+
/tests/
5+
/.shards/
6+
/.vscode/
7+
*.dwarf

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 devnote-dev <[email protected]>
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# geode
2+
3+
TODO: Write a description here
4+
5+
## Installation
6+
7+
TODO: Write installation instructions here
8+
9+
## Usage
10+
11+
TODO: Write usage instructions here
12+
13+
## Development
14+
15+
TODO: Write development instructions here
16+
17+
## Contributing
18+
19+
1. Fork it (<https://github.com/your-github-user/geode/fork>)
20+
2. Create your feature branch (`git checkout -b my-new-feature`)
21+
3. Commit your changes (`git commit -am 'Add some feature'`)
22+
4. Push to the branch (`git push origin my-new-feature`)
23+
5. Create a new Pull Request
24+
25+
## Contributors
26+
27+
- [devnote-dev](https://github.com/your-github-user) - creator and maintainer

shard.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: geode
2+
version: 0.1.0
3+
4+
authors:
5+
- devnote-dev <[email protected]>
6+
7+
targets:
8+
geode:
9+
main: src/geode.cr
10+
11+
crystal: 1.7.0
12+
13+
license: MIT

spec/geode_spec.cr

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
require "./spec_helper"
2+
3+
describe Geode do
4+
# TODO: Write tests
5+
6+
it "works" do
7+
false.should eq(true)
8+
end
9+
end

spec/spec_helper.cr

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
require "spec"
2+
require "../src/geode"

src/geode.cr

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module Geode
2+
VERSION = "0.1.0"
3+
end

0 commit comments

Comments
 (0)