Coder Social home page Coder Social logo

furry's Introduction

Furry

Build Status Code Climate

Simplistic web framework.

Installation

Add this line to your application's Gemfile:

gem 'furry'

Or install it yourself as:

$ gem install furry

Usage

require 'furry'

class DemoApp < Furry::App
  class HomeController < Controller
    def index
      render erb: 'Ta-da'
    end

    def random_number
      @number = rand(0..params[:max].to_i)
      render erb: "The number is <%= @number %>"
    end

    def random_100
      redirect_to random_path(100)
    end
  end

  router.draw do
    get '/', 'home#index'
    get '/random', 'home#random_100'
    get '/random/:max', 'home#random_number', name: 'random'
  end
end
$ curl localhost:8888
Ta-da
$ curl -I localhost:8888/random
HTTP/1.1 302 Found
Location: http://localhost:8888/random/100
$ curl localhost:8888/random/500
The number is 261

License

MIT.

furry's People

Contributors

goshacmd avatar chatman-media avatar

Watchers

James Cloos avatar  avatar  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.