diff options
| author | Jack Nagel | 2014-06-22 15:00:15 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2014-06-22 15:03:17 -0500 | 
| commit | ffb1952d90ecd0b7b28d7a6eaeda9fe5876987d4 (patch) | |
| tree | 2b03c53607229abf0536111c5a31c401ca0b5cd5 | |
| parent | 078d6b74a5d62727d0d2f9b424946a1259fe6560 (diff) | |
| download | homebrew-ffb1952d90ecd0b7b28d7a6eaeda9fe5876987d4.tar.bz2 | |
Keep DSL related code in one place
| -rw-r--r-- | Library/Homebrew/formula.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index d84d64a13..f64468943 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -14,7 +14,6 @@ require 'pkg_version'  class Formula    include FileUtils    include Utils::Inreplace -  extend BuildEnvironmentDSL    attr_reader :name, :path, :homepage, :build    attr_reader :stable, :devel, :head, :active_spec @@ -605,6 +604,7 @@ class Formula    # The methods below define the formula DSL.    class << self +    include BuildEnvironmentDSL      attr_reader :keg_only_reason, :cc_failures      attr_rw :homepage, :plist_startup, :plist_manual, :revision | 
