Sha256: c04824396f8a7ac16f4477821b131c8b0580bf5f3ee3075557bed0e1d51222eb
Contents?: true
Size: 1.55 KB
Versions: 1
Compression:
Stored size: 1.55 KB
Contents
module Gon module Sinatra class Store attr_accessor :request def initialize(variables) @env = variables end def all_variables @env end def clear @env.clear end def method_missing(m, *args, &block) if ( m.to_s =~ /=$/ ) if public_methods.include? m.to_s[0..-2].to_sym raise "You can't use Gon public methods for storing data" end set_variable(m.to_s.delete('='), args[0]) else get_variable(m.to_s) end end def get_variable(name) @env[name] end alias :get :get_variable def set_variable(name, value) @env[name] = value end alias :set :set_variable def rabl(view_path, options = {}) unless defined?(::Rabl) raise Exception.new("You must require rabl and register Gon::Sinatra::Rabl to use rabl") end unless options[:instance] raise ArgumentError.new("You should pass :instance in options: :instance => self") end rabl_data = Gon::Sinatra::Rabl.parse_rabl(view_path, options[:instance]) if options[:as] set_variable(options[:as].to_s, rabl_data) elsif rabl_data.is_a? Hash rabl_data.each do |key, value| set_variable(key, value) end else set_variable('rabl', rabl_data) end end def jbuilder(view_path, options = {}) raise NoMethodError.new("Not available for sinatra") end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gon-sinatra-0.1.1 | lib/gon/sinatra/store.rb |