Sha256: e87d52f4a4bd1a933da755620da37fdaaa561ac3919d3f5885fa925edb613ff6
Contents?: true
Size: 1.28 KB
Versions: 1
Compression:
Stored size: 1.28 KB
Contents
require 'active_support/hash_with_indifferent_access' require 'pathname' module NYNY module Inheritable def self.included base base.class_eval do def self.inheritable name, value @_inheritables ||= [] @_inheritables << name self.class.send :attr_accessor, name self.send "#{name}=", value end def self.inherited subclass @_inheritables.each do |attr| subclass.send "#{attr}=", self.send(attr).clone subclass.instance_variable_set "@_inheritables", @_inheritables.clone end super end end end end class EnvString < String [:production, :development, :test].each do |env| define_method "#{env}?" do self == env.to_s end end end class Request < Rack::Request def params @params ||= ActiveSupport::HashWithIndifferentAccess.new(super) end end class Response < Rack::Response def rewrite str @body = [] @length = 0 header.delete "Content-Type" header.delete "Content-Length" write str end alias_method :body=, :rewrite end def self.root @root ||= Pathname.pwd end def self.env @env ||= EnvString.new(ENV['RACK_ENV'] || 'development') end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
nyny-3.3.0 | lib/nyny/primitives.rb |