Sinatra (software)

From Wikipedia the free encyclopedia

Sinatra
Original author(s)Blake Mizerany
Developer(s)Konstantin Haase
Initial release9 September 2007 (2007-09-09)
Stable release
3.0.2[1] Edit this on Wikidata / 1 October 2022; 18 months ago (1 October 2022)
RepositorySinatra Repository
Written inRuby
Operating systemCross-platform
TypeWeb application framework
LicenseMIT License
Websitewww.sinatrarb.com

Sinatra is a free and open source software web application library and domain-specific language[2] written in Ruby. It is an alternative to other Ruby web application frameworks such as Ruby on Rails, Merb, Nitro, and Camping. It is dependent on the Rack web server interface. It is named after musician Frank Sinatra.[3]

Designed and developed by Blake Mizerany, Sinatra is small and flexible. It does not follow the typical model–view–controller pattern used in other frameworks, such as Ruby on Rails. Instead, Sinatra focuses on "quickly creating web-applications in Ruby with minimal effort."[4] Because of much smaller size compared to Ruby on Rails, it is also called microframework.[5]

Some notable companies and institutions that use Sinatra include Apple,[6] BBC,[7] the British Government's Government Digital Service,[8] LinkedIn,[9] the National Security Agency,[10] Engine Yard, Heroku, GitHub,[11] Stripe, and Songbird.[12] Travis CI provides much of the financial support for Sinatra's development.[3]

Sinatra was created and open-sourced in 2007. It inspired multiple ports and similar projects in other programming languages, such as Express.js and Scalatra.[5][13]

Mizerany and Heroku's Adam Wiggins introduced and discussed Sinatra at RubyConf 2008.[14]

Example[edit]

#!/usr/bin/env ruby require 'sinatra'  get '/' do   redirect to('/hello/World') end  get '/hello/:name' do   "Hello #{params[:name]}!" end 

References[edit]

  1. ^ Error: Unable to display the reference properly. See the documentation for details.
  2. ^ "Taking the Stage - Sinatra: Up and Running". Safaribooksonline.com. Retrieved 2016-10-21.
  3. ^ a b Sinatra: About
  4. ^ Sinatra: Readme
  5. ^ a b Carlson, Lucas; Richardson, Leonard (2015). Ruby Cookbook: Recipes for Object-Oriented Scripting. O'Reilly Media. ISBN 9781449373696.
  6. ^ Open Source software used by Apple
  7. ^ BBC Zeitgeist Archived 2010-11-28 at the Wayback Machine
  8. ^ O'Reilly radar: With GOV.UK, British government redefines the online government platform
  9. ^ JRubyfying LinkedIn's Front-end
  10. ^ NSA Careers: The Programmer Archived 2013-12-16 at the Wayback Machine
  11. ^ "Open Source (Almost) Everything". 22 November 2011. Retrieved 16 January 2015.
  12. ^ Sinatra in The Wild
  13. ^ Save Data Automatically with Ruby on Rails, retrieved 2022-05-11
  14. ^ Confreaks: RubyConf 2008 Archived 2009-03-31 at the Wayback Machine

Further reading[edit]

External links[edit]