Awesome
SAT
Sinatra Application Template.
Features
- Sinatra modular application. Inspired by travis-admin.
- Per-environment configuration in separated files.
- Separate routes in controllers.
- Separated directories for controllers' views.
- Per-controller helpers.
- sinatra-contrib
- sinatra-partial
- i18n.
- minitest.
- rack-test.
- thin.
Installation
- Clone the repository:
$ git clone git@github.com:patriciomacadden/sat.git
- Create a git repository and change the
origin
:
$ git remote rm origin
$ git remote add origin <YOUR_GIT_REPOSITORY>
- Change the application name (and commit the change):
$ APP_NAME=AwesomeApp; for i in `find . -type f | grep -v .git`; do if [ `grep SAT $i | wc -l` != 0 ]; then sed -i '' "s/SAT/$APP_NAME/g" $i; fi; done; git commit -am "SAT => $APP_NAME"
Note: Note the APP_NAME
variable. You should change the application name
there.
Creating a new controller
Let's create a controller for handling products.
- Create
app/controlers/products_controller.rb
module SAT::Application
class ProductsController < ApplicationController
set prefix: '/products'
# views will be found in app/views/products directory.
# If you want to change the views directory, use this
# configuration option.
# set views_prefix: '/some_other_directory'
get '/' do
# will render app/views/products/index.erb
# erb :index
'Hello World'
end
end
end
- Create
app/helpers/products_helpers.rb
module SAT::Application
module ProductsHelpers
# helper methods
end
end
- Create the views directory
$ mkdir app/views/products
- Create
spec/controllers/products_controller_spec.rb
require 'minitest_helper'
describe SAT::Application::ProductsController do
include Rack::Test::Methods
def app
SAT::Application
end
describe 'GET /products' do
it 'must be ok' do
get '/products'
last_response.must_be :ok?
end
end
end
- Create
spec/helpers/products_helpers_spec.rb
require 'minitest_helper'
describe SAT::Application::ProductsHelpers do
include Rack::Test::Methods
def app
SAT::Application
end
end
Custom settings
Two settings are introduced:
prefix
: It indicates where to map a controller. Must be used in every controller.views_prefix
: It indicates where to find the views. If not set,prefix
is used to find the views.
Caveats
Since the application itself its a Rack::Builder
that maps the different
controllers to a particular path, you need to use that builder to use any rack
middleware.
See an example:
# in environment.rb:
config.builder.use Rack::Auth::Basic do |username, password|
username == 'admin' && password == 'secret'
end
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
License
See the LICENSE.