Sha256: 86a73848faaee3286ca95190986e89a4944e75a82577c662b383f16e5823f313

Contents?: true

Size: 481 Bytes

Versions: 19

Compression:

Stored size: 481 Bytes

Contents

module Redbreast
  module TemplateGenerator
    # Class for creating ObjC templates
    class ObjC
      include ERB::Util
      def h_filename
        raise NotImplementedError, 'Abstract Method'
      end

      def m_filename
        raise NotImplementedError, 'Abstract Method'
      end

      def h_template
        raise NotImplementedError, 'Abstract Method'
      end

      def m_template
        raise NotImplementedError, 'Abstract Method'
      end
    end
  end
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
redbreast-1.4.2 lib/redbreast/template_generators/objc_template_generator.rb
redbreast-1.4.1 lib/redbreast/template_generators/objc_template_generator.rb
redbreast-1.4.0 lib/redbreast/template_generators/objc_template_generator.rb
redbreast-1.3.1 lib/redbreast/template_generators/objc_template_generator.rb
redbreast-1.3.0 lib/redbreast/template_generators/objc_template_generator.rb
redbreast-1.2.5 lib/redbreast/template_generators/objc_template_generator.rb
redbreast-1.2.4 lib/redbreast/template_generators/objc_template_generator.rb
redbreast-1.2.3 lib/redbreast/template_generators/objc_template_generator.rb
redbreast-1.2.2 lib/redbreast/template_generators/objc_template_generator.rb
redbreast-1.2.1 lib/redbreast/template_generators/objc_template_generator.rb
redbreast-1.2.0 lib/redbreast/template_generators/objc_template_generator.rb
redbreast-1.1.2 lib/redbreast/template_generators/objc_template_generator.rb
redbreast-1.1.1 lib/redbreast/template_generators/objc_template_generator.rb
redbreast-1.1.0 lib/redbreast/template_generators/objc_template_generator.rb
redbreast-1.0.4 lib/redbreast/template_generators/objc_template_generator.rb
redbreast-1.0.3 lib/redbreast/template_generators/objc_template_generator.rb
redbreast-1.0.2 lib/redbreast/template_generators/objc_template_generator.rb
redbreast-1.0.1 lib/redbreast/template_generators/objc_template_generator.rb
redbreast-1.0.0 lib/redbreast/template_generators/objc_template_generator.rb