crystal init

This commit is contained in:
Nimble 2022-03-09 00:14:20 -06:00
parent 09f84bb469
commit c894692b77
7 changed files with 45 additions and 1 deletions

9
.editorconfig Normal file
View 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
View File

@ -0,0 +1,5 @@
/docs/
/lib/
/bin/
/.shards/
*.dwarf

View File

@ -1,3 +1,3 @@
# PLSwapper
# playper
Playlist converter from different formats.

13
shard.yml Normal file
View 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
View 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
View File

@ -0,0 +1,2 @@
require "spec"
require "../src/playper"

6
src/playper.cr Normal file
View File

@ -0,0 +1,6 @@
# TODO: Write documentation for `Playper`
module Playper
VERSION = "0.1.0"
# TODO: Put your code here
end