lib/buildr.rb in assaf-buildr-1.3.3 vs lib/buildr.rb in assaf-buildr-1.3.4

- old
+ new

@@ -12,24 +12,22 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations under # the License. module Buildr - VERSION = '1.3.3'.freeze + VERSION = '1.3.4'.freeze end require 'buildr/core' require 'buildr/packaging' require 'buildr/java' +require 'buildr/scala' require 'buildr/ide' # Methods defined in Buildr are both instance methods (e.g. when included in Project) # and class methods when invoked like Buildr.artifacts(). module Buildr ; extend self ; end # The Buildfile object (self) has access to all the Buildr methods and constants. class << self ; include Buildr ; end class Object #:nodoc: Buildr.constants.each { |c| const_set c, Buildr.const_get(c) unless const_defined?(c) } end - -# Prevent RSpec runner from running at_exit. -require 'spec' \ No newline at end of file