Shard Detail

easycr v0.1.0

an super organized crystal tree generator

Install & Use

Add the following code to your project's shard.yml under:

dependencies to use in production
- OR -
development_dependencies to use in development


easycr:
  github: NillyTheL0L/easy.cr

Readme

easycr

An super organized crystal tree generator

Installation

  1. Clone this repo
git clone https://github.com/nillythel0l/easy.cr
  1. Install Dependencies
shards install
  1. Build
./bin/gi-crystal
shards build
  1. Move it Now you can move ./bin/easycr to any folder to create your app

Usage

./easycr

TODO

add

require "../deps/**"
require "../imports/**"

to app/app/app.cr

add your requires to

./app/source/imports/imports.cr

Imports.cr example

require "cor"
require "cor/string"

App.cr example

require "../deps/**"
require "../imports/**"
puts "hello world".fore("bruh")
App.lol

Deps.cr example

class App
  def self.lol
    puts "hello lol"
  end
end

Contributing

  1. Fork it (https://github.com/nillythel0lr/easy.cr/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors

app/
 shard.yml
 source/
  app/
   app.cr
  defs/
   defs.cr
  imports/
   imports.cr