# Creating Your First App Sharp comes with an application generator built in to help you get started. To create a sharp app, simply run the following command: $ sharp new hello_world You application will be created in the `hello_world` directory. Next we'll take a look at what Sharp created for you. # Layout of an Application The directories and files created in the `hello_world` directory are as follows: ├── app/ │   ├── actions/ │   │   ├── application_action.rb │   │   └── root_action.rb │   ├── initializers/ │   │   ├── post/ │   │   └── pre/ │   ├── lib/ │   ├── models/ │   ├── views/ │   │   └── application_view.rb │   ├── boot.rb │   └── routes.rb ├── assets/ │   ├── javascripts/ │   ├── stylesheets/ │   └── packages.yml ├── config/ ├── public/ │   ├── favicon.ico │   └── robots.txt ├── templates/ │   ├── layouts/ │   │   └── application.erb │   └── root.erb ├── vendor/ │   └── assets/ │   ├── javascripts/ │   └── stylesheets/ ├── Gemfile ├── Guardfile ├── Rakefile └── config.ru Throughout the rest of this tutorial, we'll cover in detail what each of these subdirectories and files are used for, but for now, we'll just go over the top-level directories. ## app Contains the Ruby code specific to your application. Some files have been created here to help get you started. ## assets Contains the CSS and JS specific to your application. ## config This directory contains configuration files for details that will change based upon the environment you are running your application in. ## public Contains the static files that will be served be the web server. ## templates Contains the templates used to generate HTML. The default templating language is ERB, but Haml, Slim, Liquid, Mustache and other various templating languages can be used as well. ## vender Contains 3rd party CSS and JS you are using in your application. You typically don't modify these files, you import them from another project, such as [jQuery][jquery] or [Twitter Bootstrap][bootstrap]. # Starting the Server Now that you have a Sharp application, you can start up the server and see your first web page! Sharp uses [Bundler][bundler] by default, so to get rolling, make sure you have bundler installed and run bundler: $ bundle To start the server, run this command from within the `hello_world` directory: $ shotgun This will start the application on port 9393. You can see what the homepage looks like by running this command: $ curl -s http://localhost:9393 Hello, World!

Hello, World!

You can, of course, also look at this page in your browser: $ open http://localhost:9393 Next up, we'll dive into how this page is created. # Routing When your application receives a request, the first thing that happens is the router determines which action to use to generate the response. The routes are defined in the file `app/routes.rb`, which looks like this: ``` ruby Sharp.routes do get '/' => RootAction end ``` What this means is if the request is a `GET` and the path is just `/`, call the `RootAction` to generate the response. We'll go into routing in more detail later, but for now, let's take a look at what the `RootAction` does. The Sharp router is a [Rack::Router][rack-router], so for more information on how the router works, take a look at the docs for [Rack::Router][rack-router]. # Actions So as we've seen, the router determines what action should respond to a request, and it is the job of an action to generate the response. If we look at the `RootAction`, which is defined in `app/actions/root_action.rb`, we see this: ``` ruby class RootAction < ApplicationAction end ``` Huh, not much going on there, is there? That's because the default behavior of an action is to render the template that matches the name of the action. In this case, the action is `app/actions/root_action.rb`, so the template will be `templates/root.erb`. We'll cover actions in more depth later, but let's take a look at the template next. But in case you are curious now, Sharp actions are [Rack::Action][rack-action], so you can read up on the documentation for [Rack::Action][rack-action] to find out more about what you can do with actions. # Templates There is what the template that is used to generate our response, `templates/root.erb`, looks like: ``` erb

Hello, World!

``` There's not much to it yet. In fact, this is just a static snippet of HTML. Templates typically have Ruby code mixed in with the HTML, in order to generate a dynamic response. So why don't you go ahead and make a change to see what that looks like. Edit `templates/root.erb` to look like this: ``` erb

Hello, World

``` If you make a request to your application now, you'll see this: $ curl -s http://localhost:9393 Hello, World!

Hello, World!

As you can see, the Ruby code contained between the `<%= -%>` was evaluated and the result what the current year, which was included into the response. One thing to notice is that you didn't have to restart your application, the changes were picked up automatically. This is because we used [shotgun][shotgun] to start the application, which handles automatically reloading the application between requests for us. One question you may be asking is where did the ``, `` and `` tags come from? `templates/root.erb` just contains the snippet that ends up in the ``. The answer is layouts, which is the topic we'll introduce next. # Layouts In many web application, the same `` and basic structure within the `` is shared among many different pages. Layouts allow you to define that structure in one place and share it between multiple actions. The layout your application is currently using is at `templates/layouts/application.erb`: ``` erb Hello, World! <%= render main -%> ``` The tag `<%= render main -%>` is used to specify where the main content for the view should go. In fact, `render` is a generic method that you can use render any template from within another. `main` is a local variable that has the name of the template for the current view, which is `"root"` in this case. # Views In your application, you will most likely want to prepare some data in the action and make it available for rendering in the template. Taking our previous example of dynamically generating the year in the template, let's move the "logic" of generating that into the action. Edit `app/actions/root_action.rb` to look like this: ``` ruby class RootAction < ApplicationAction def respond @now = Time.now view[:current_year] = @now.year super end end ``` Now we can modify the template to refer to it like this: ``` erb

Hello, World

``` Instance variables of the action are not accessible in the template, so the following would not work: ``` erb

Hello, World

``` If you have data that you want available in the template, you must assign to the view, as we did with `current_year` in this example. # Filters Sharp actions support before filters, which are methods that execute before the `response` method. Using before filters, we could write the previous example like this: ``` ruby class RootAction < ApplicationAction before_filter :load_year def load_year view[:current_year] = Time.now.year end end ``` More common usage of before filter is to check for some pre-existing conditions and possibly render a response if they are not met: ``` ruby class RootAction < ApplicationAction before_filter :require_password def require_password unless params[:password] == 'secret' redirect_to '/access_denied' end end end ``` In this example, unless there is a param password equal to "secret", a redirect response will be generate, which prevents the action from calling the respond method and instead returns the redirect response. # Custom Views Another way to make data available to the templates in Sharp is by creating a view object that corresponds to your action. Create a file at `app/views/root_view.rb` that looks like this: ``` ruby class RootView < ApplicationView def current_year Time.now.year end end ``` You can now return the `RootAction` to it's original default state: ``` ruby class RootAction < ApplicationAction end ``` If you hit the root URL in your browser or with curl now, you will see the same result. It is a good practice to build up a hierarchy of view objects and use inheritance to share functionality between related views. The functionality for the view layer in Sharp is provided by [Curtain][curtain]. If you are looking for more information on what you can do with views, take a look at the documentation for [Curtain][curtain]. # Console You can get an IRB console with your sharp application loaded by running this command: $ sharp console From within the console, there are a few methods to help you work with your Sharp application. First, if you would like to see what action a request would route to, you can do this: > Sharp.route :get, '/' => RootAction In this example, `:get` is the request method and `'/'` is the path you want to check. As you can see, it returns the rack app that the route matches. It returns nil if there is no match. You can also call an action through the route and get the rack response that it generates: > Sharp.get '/' => [200, {"Content-Type"=>"text/html", "Content-Length"=>"171"}, #