Sinatra is a DSL for quickly creating web applications in Ruby with minimal effort.
- You can see on Gemfile
git clone https://github.com/SunDi3yansyah/sinatra.git
cd sinatra
bundle install
Available CLI using rake
rake
rackup config.ru
.
├── app
│ ├── controllers
│ │ ├── application_controller.rb
│ │ └── concerns
│ │ └── .keep
│ ├── models
│ │ └── concerns
│ │ └── .keep
│ └── views
│ └── layouts
│ └── application.erb
├── config
│ ├── application.rb
│ ├── boot.rb
│ ├── .databases
│ │ ├── mysql2.yml
│ │ ├── pg.yml
│ │ └── sqlite3.yml
│ ├── database.yml
│ ├── environments
│ │ ├── development.rb
│ │ ├── production.rb
│ │ ├── staging.rb
│ │ └── test.rb
│ ├── exception.rb
│ └── initializers
│ └── constants.rb
├── config.ru
├── db
│ └── seeds.rb
├── .editorconfig
├── Gemfile
├── Gemfile.lock
├── .gitignore
├── lib
│ └── tasks
│ └── .keep
├── log
│ └── .keep
├── public
│ ├── favicon.ico
│ ├── robots.txt
│ └── storage
│ └── .keep
├── Rakefile
├── README.md
├── tmp
│ └── .keep
└── .travis.yml
Bug reports and pull requests are welcome on GitHub at https://github.com/SunDi3yansyah/sinatra. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
Everyone interacting in the Sinatra project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.
The gem is available as open source under the terms of the MIT License.