crystal init
This commit is contained in:
parent
09f84bb469
commit
c894692b77
7 changed files with 45 additions and 1 deletions
9
.editorconfig
Normal file
9
.editorconfig
Normal file
|
@ -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
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
/docs/
|
||||
/lib/
|
||||
/bin/
|
||||
/.shards/
|
||||
*.dwarf
|
|
@ -1,3 +1,3 @@
|
|||
# PLSwapper
|
||||
# playper
|
||||
|
||||
Playlist converter from different formats.
|
13
shard.yml
Normal file
13
shard.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
name: playper
|
||||
version: 0.1.0
|
||||
|
||||
authors:
|
||||
- Nimble <Nimble@codeberg.org>
|
||||
|
||||
targets:
|
||||
playper:
|
||||
main: src/playper.cr
|
||||
|
||||
crystal: 1.3.2
|
||||
|
||||
license: AGPL
|
9
spec/playper_spec.cr
Normal file
9
spec/playper_spec.cr
Normal file
|
@ -0,0 +1,9 @@
|
|||
require "./spec_helper"
|
||||
|
||||
describe Playper do
|
||||
# TODO: Write tests
|
||||
|
||||
it "works" do
|
||||
false.should eq(true)
|
||||
end
|
||||
end
|
2
spec/spec_helper.cr
Normal file
2
spec/spec_helper.cr
Normal file
|
@ -0,0 +1,2 @@
|
|||
require "spec"
|
||||
require "../src/playper"
|
6
src/playper.cr
Normal file
6
src/playper.cr
Normal file
|
@ -0,0 +1,6 @@
|
|||
# TODO: Write documentation for `Playper`
|
||||
module Playper
|
||||
VERSION = "0.1.0"
|
||||
|
||||
# TODO: Put your code here
|
||||
end
|
Loading…
Reference in a new issue