Class: Galakei::SpacerController

Inherits:
ActionController::Base
  • Object
show all
Defined in:
app/controllers/galakei/spacer_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



2
3
4
5
6
7
8
# File 'app/controllers/galakei/spacer_controller.rb', line 2

def create
  respond_to do |format|
    format.gif do
      send_data(Galakei::Spacer.create_gif(params[:color]), :disposition => "inline", :type => :gif)
    end
  end
end