Just a mini web framework
$ gem install fasta
$ fasta plz NEW_APP_NAME
$ cd NEW_APP_NAME
Before first start run
$ rake db:create
To start server:
$ fasta go [-e ENVIRONMENT] [-p PORT]
or advanced
$ puma boot.ru -e production -p 3210
$ fasta endpoint <ENDPOINT_NAME> <ACTION> <ACTION> <ACTION> ...
# fasta endpoint account index show custom
After generate endpoint add the appropriate routes in routes.rb and extend a migration with needed fields:
# routes.rb
$router = Fasta::Router.new do |mapper|
...
mapper.reg(:<METHOD>, '/<PATH>', <ENDPOINT>::<ACTION>)
# mapper.reg(:get, '/accounts', Account::Index)
...
end
Also after set up migration file run:
$ rake db:migrate
# app/endpoints/user/boards.rb
module User
class Boards < Model::Show
validate_fields :id
def fetch
user_id = params[:id]
through = DB[:users_boards].where(user_id: user_id)
DB[:boards].where(id: through.select(:board_id)).to_a
end
end
end
# routes.rb
$router = Fasta::Router.new do |mapper|
...
mapper.reg(:get, '/users/:id/boards', User::Boards)
...
end
# app/endpoints/team/user.rb
module Team
module User
extend Model
end
end
# app/endpoints/team/user/index.rb
module Team
module User
class Index < Model::Index; end
end
end
# routes.rb
$router = Fasta::Router.new do |mapper|
...
mapper.reg(:get, 'team/users', Team::User::Index)
...
end
TODO:
- Write usage instructions here
- Show and Index considering