前端框架选型是企业提升开发效率与用户体验的关键因素
653
2022-10-28
Padrino一个构建在Sinatra上的全堆栈ruby框架
Padrino¶ ↑
Padrino is the godfather of Sinatra. Follow us on padrinorb.com and on twitter @padrinorb. Join us on gitter
Preface¶ ↑
Padrino is a ruby framework built upon the excellent Sinatra Web Library. Sinatra is a DSL for creating simple web applications in Ruby quickly and with minimal effort. This framework tries to make it as fun and easy as possible to code more advanced web applications by building upon the Sinatra philosophies and foundations.
Introduction¶ ↑
Many people love that Sinatra is simple and lightweight but soon begin to miss the great deal of functionality provided by other web frameworks such as Django or Rails when building non-trivial applications.
Our goal with this framework is to adhere to the essence of Sinatra and at the same time create a standard library of tools, helpers and components that will make Sinatra suitable for increasingly complex applications.
Here is a brief overview of functionality provided by the Padrino framework:
Agnostic Full support for many popular testing, templating, mocking, and data storage choices. Generators Create Padrino applications, models, controllers i.e: padrino-gen project. Mountable Unlike other ruby frameworks, principally designed for mounting multiple apps. Routing Full url named routes, named params, before/after filter support. Tag Helpers View helpers such as: tag, content_tag, input_tag. Asset Helpers View helpers such as: link_to, image_tag, javascript_include_tag. Form Helpers Builder support such as: form_tag, form_for, field_set_tag, text_field. Text Helpers Useful formatting like: time_ago_in_words, js_escape_html, sanitize_html. Mailer Fast and simple delivery support for sending emails (akin to ActionMailer). Caching Simple route and fragment caching to easily speed up your web requests. Admin Built-in Admin interface (like Django) Logging Provide a unified logger that can interact with your ORM or any library. Reloading Automatically reloads server code during development. Localization Full support of I18n language localization and can auto-set user's locale.
Keep in mind, developers are able to individually pull in these modular components into existing Sinatra applications or use them altogether for a full-stack Padrino application.
Installation¶ ↑
To install the padrino framework, simply grab the latest version from RubyGems:
$ gem install padrino
This will install the necessary padrino gems to get you started. Now you are ready to use this gem to enhance your Sinatra projects or to create new Padrino applications.
For a more detailed look at installing Padrino, check out the Installation Guide.
Usage¶ ↑
Padrino is a framework which builds on the existing functionality of Sinatra and provides a variety of additional tools and helpers to build upon that foundation. This README and Padrino documentation in general will focus on the enhancements to the core Sinatra functionality. To use Padrino, one should be familiar with the basic usage of Sinatra itself.
You can also check out the Why Learn Padrino? introduction to learn more about how Sinatra and Padrino work together.
For information on how to use a specific gem in isolation within an existing Sinatra project, checkout the guide for Using Padrino within Sinatra.
Getting Started¶ ↑
Once a developer understands Sinatra, Padrino is quite easy to get comfortable with since Padrino is simply a superset of existing Sinatra functionality!
First, be sure to read over the Getting Started guide to learn more about how Sinatra and Padrino work together.
Best way to learn more about building Padrino applications is to read following resources:
Padrino Guides - Guides outlining the major functionality within Padrino. Blog Tutorial - Step-by-step guide to building a blog application with Padrino. Padrino API - YARD documentation for the Padrino framework. Quick Overview - Outlines basic generation commands.
The individual Padrino sub-gems also contain README's which outlines their functionality.
Further Questions¶ ↑
Can't find an answer in the resources above?
Ask any questions on the gitter channel.
Bug reporting¶ ↑
Log it onto Github by creating a new issue.
Be sure to include all relevant information, like the versions of Padrino, Rack, Sinatra, Ruby and operating system you are using.
A minimal project showing the issue published on Github with Gemfile.lock is also extremely helpful.
Copyright¶ ↑
Copyright © 2010-2016 Padrino. See LICENSE for details.
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~