GithubHelp home page GithubHelp logo

fighterleslie / sinatra-activerecord Goto Github PK

View Code? Open in Web Editor NEW

This project forked from bmizerany/sinatra-activerecord

0.0 1.0 0.0 246 KB

Extends Sinatra with ActiveRecord helper methods and Rake tasks (now maintained by @holman).

Ruby 100.00%

sinatra-activerecord's Introduction

Sinatra ActiveRecord Extension

The official fork is now at: http://github.com/janko-m/sinatra-activerecord

This one is now closed.


Extends Sinatra with a extension methods and Rake tasks for dealing with a SQL database using the ActiveRecord ORM.

Install the sinatra-activerecord gem along with one of the database adapters:

sudo gem install activerecord
sudo gem install sinatra-activerecord -s http://gemcutter.org
sudo gem install sqlite3
sudo gem install mysql
sudo gem install postgres

adding this to your Rakefile

# require your app file first
require 'sinatra-ar-exmple-app'
require 'sinatra/activerecord/rake'

In terminal, test that it works

$ rake -T
rake db:create_migration  # create an ActiveRecord migration in ./db/migrate
rake db:migrate           # migrate your database

Now you can create a migration

$ rake db:create_migration NAME=create_foos

This will create a migration file in ./db/migrate, ready for editing

class CreateFoos < ActiveRecord::Migration
  def self.up
    create_table :foos do |t|
      t.string :name
    end
  end

  def self.down
    drop_table :foos
  end
end

run the migration

$ rake db:migrate

I like to split models out into a separate database.rb file and then require it from the main app file, but you can plop the following code in about anywhere and it'll work just fine:

require 'sinatra'
require 'sinatra/activerecord'

# Establish the database connection; or, omit this and use the DATABASE_URL
# environment variable or the default sqlite://<environment>.db as the connection string:
set :database, 'sqlite://foo.db'

# At this point, you can access the ActiveRecord::Base class using the
# "database" object:
puts "the foos table doesn't exist" if !database.table_exists?('foos')

# models just work ...
class Foo < ActiveRecord::Base
end

# see:
Foo.all

# access the models within the context of an HTTP request
get '/foos/:id' do
  @foo = Foo.find(params[:id])
  erb :foos
end

NOTE about the rip-off

This Code and README.md is a heavy adaption of rtomayko's sinatra-sequel

Copyright (c) 2009 Blake Mizerany

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

sinatra-activerecord's People

Contributors

bmizerany avatar runemadsen avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.