Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioAriasC committed Nov 13, 2021
1 parent 424a825 commit df0288a
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*.cr]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/docs/
/lib/
/bin/
/.shards/
*.dwarf
13 changes: 13 additions & 0 deletions shard.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: monyet
version: 0.1.0

authors:
- Mario Arias <[email protected]>

targets:
monyet:
main: src/monyet.cr

crystal: 1.2.2

license: MIT
9 changes: 9 additions & 0 deletions spec/monyet_spec.cr
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
require "./spec_helper"

describe Monyet do
# TODO: Write tests

it "works" do
false.should eq(true)
end
end
2 changes: 2 additions & 0 deletions spec/spec_helper.cr
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
require "spec"
require "../src/monyet"
6 changes: 6 additions & 0 deletions src/monyet.cr
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# TODO: Write documentation for `Monyet`
module Monyet
VERSION = "0.1.0"

# TODO: Put your code here
end

0 comments on commit df0288a

Please sign in to comment.