Sha256: 8f808b387e7875ef0dc6f8fc08b3ee16288510492bdb97e88776bd11c1c554d1
Contents?: true
Size: 642 Bytes
Versions: 2
Compression:
Stored size: 642 Bytes
Contents
$:.unshift(File.dirname(__FILE__)) unless $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__))) require "rubygems" require "activesupport" require "goaloc/app" require "goaloc/model" require "goaloc/generators/generator" require "goaloc/generators/rails" require "goaloc/generators/merb" module Goaloc end APP = @app = App.new def generate(*args) @app.log << "generate #{args.inspect[1..-2]}" @app.generate(*args) end def route(*args) @app.log << "route #{args.inspect[1..-2]}" @app.route(*args) end def add_attrs(h) @app.log << "add_attrs #{h.inspect[1..-2]}" @app.add_attrs(h) end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mattknox-goaloc-0.2.11 | lib/goaloc.rb |
mattknox-goaloc-0.3.0 | lib/goaloc.rb |