# HG changeset patch # User edogawaconan # Date 1409909602 -32400 # Node ID 86abbc9ce81b167b6c6957d8423f3db94e4bf5fa # Parent a9d5b12a291f161450cc00b0693076d9c9f1cb89 Add static controller. diff -r a9d5b12a291f -r 86abbc9ce81b app/controllers/static_controller.rb --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/controllers/static_controller.rb Fri Sep 05 18:33:22 2014 +0900 @@ -0,0 +1,4 @@ +class StaticController < ApplicationController + def index + end +end diff -r a9d5b12a291f -r 86abbc9ce81b app/views/static/index.html.erb --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/views/static/index.html.erb Fri Sep 05 18:33:22 2014 +0900 @@ -0,0 +1,14 @@ + + + rsstweet + + + +

rsstweet

+

Proxying any user's tweet for usage with RSS readers

+ + diff -r a9d5b12a291f -r 86abbc9ce81b test/controllers/static_controller_test.rb --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/controllers/static_controller_test.rb Fri Sep 05 18:33:22 2014 +0900 @@ -0,0 +1,8 @@ +require 'test_helper' + +class StaticControllerTest < ActionController::TestCase + test "should get index" do + get :index + assert_response :success + end +end