flame flash
1.0.0
Flash untuk api.
# Gemfile
gem 'flame-flash'
# config.ru
require 'flame-flash' # or `Bundler.require`
# _controller.rb
include Flame :: Flash <!-- layout.html.erb -->
<%
%i[ error warning notice ] . each do | type |
flash [ type ] . each do | text |
%>
< p class =" flash <%= type %> " >
<%= text %>
</ p >
<%
end
end
%> class PostsController < Flame :: Controller
def update
flash [ :error ] = "You don't have permissions"
redirect :show
end
def delete
redirect :show , notice : 'Deleted'
end
def move
redirect :index , flash : { success : 'Moved' }
end
def create
flash . now [ :error ] = 'Not enought permissions'
view :new
end
enderrorwarningnotice Setelah memeriksa repo, jalankan bundle install untuk menginstal dependensi.
Kemudian, jalankan toys rspec untuk menjalankan tes.
Untuk menginstal permata ini ke mesin lokal Anda, jalankan toys gem install .
Untuk merilis versi baru, jalankan toys gem release %version% . Lihat cara kerjanya di sini.
Laporan bug dan permintaan tarik dipersilakan di GitHub.
Permata tersedia sebagai open source di bawah ketentuan lisensi MIT.