Sha256: 59066a9cbb48f6a7d597a77523781dddbce4253852f9f805e18c3026a9a4fbea

Contents?: true

Size: 1.91 KB

Versions: 14

Compression:

Stored size: 1.91 KB

Contents

class IntegrationGenerator < RubiGen::Base
  BASE_DIR = "lib/active_merchant/billing/integrations/"
  TEST_DIR = "test/unit/integrations/"
  
  default_options :author => nil
  
  attr_reader :name
  
  def initialize(runtime_args, runtime_options = {})
    super
    usage if args.size < 1
    @name = args.shift
    extract_options
  end
  
  def class_name
    name.classify
  end
  
  def lib_dir
    BASE_DIR + name
  end

  def manifest
    record do |m|
      # Ensure appropriate folder(s) exists
      m.directory lib_dir
      m.directory TEST_DIR
      m.directory TEST_DIR + "helpers"
      m.directory TEST_DIR + "notifications"
      
      m.template 'integration.rb', "#{lib_dir}.rb"
      m.template 'helper.rb', lib_dir + "/helper.rb"      
      m.template 'notification.rb', lib_dir + "/notification.rb"
     
      m.template 'module_test.rb', TEST_DIR + "#{name}_module_test.rb"
      m.template 'helper_test.rb', TEST_DIR + "helpers/#{name}_helper_test.rb"
      m.template 'notification_test.rb', TEST_DIR + "notifications/#{name}_notification_test.rb"
    end
  end

  protected
    def banner
      <<-EOS
Creates a ...

USAGE: #{$0} #{spec.name} name"
EOS
    end

    def add_options!(opts)
      # opts.separator ''
      # opts.separator 'Options:'
      # For each option below, place the default
      # at the top of the file next to "default_options"
      # opts.on("-a", "--author=\"Your Name\"", String,
      #         "Some comment about this option",
      #         "Default: none") { |options[:author]| }
      # opts.on("-v", "--version", "Show the #{File.basename($0)} version number and quit.")
    end
    
    def extract_options
      # for each option, extract it into a local variable (and create an "attr_reader :author" at the top)
      # Templates can access these value via the attr_reader-generated methods, but not the
      # raw instance variable value.
      # @author = options[:author]
    end
end

Version data entries

14 entries across 14 versions & 5 rubygems

Version Path
johnideal-activemerchant-1.4.10 generators/integration/integration_generator.rb
johnideal-activemerchant-1.4.11 generators/integration/integration_generator.rb
johnideal-activemerchant-1.4.4 generators/integration/integration_generator.rb
johnideal-activemerchant-1.4.5 generators/integration/integration_generator.rb
johnideal-activemerchant-1.4.6 generators/integration/integration_generator.rb
johnideal-activemerchant-1.4.7 generators/integration/integration_generator.rb
johnideal-activemerchant-1.4.8 generators/integration/integration_generator.rb
martinstannard-activemerchant-0.1.0 generators/integration/integration_generator.rb
seamusabshere-active_merchant-1.4.2.1 generators/integration/integration_generator.rb
seamusabshere-active_merchant-1.4.2.3 generators/integration/integration_generator.rb
smulube-activemerchant-1.5.1.4 generators/integration/integration_generator.rb
smulube-activemerchant-1.5.1.3 generators/integration/integration_generator.rb
smulube-activemerchant-1.5.1.2 generators/integration/integration_generator.rb
spree-0.2.0 vendor/plugins/active_merchant/generators/integration/integration_generator.rb