Sha256: 688b677c1235f69ef28169d2211c6be2c3ca54ff235932d4b540fe68938d8025

Contents?: true

Size: 550 Bytes

Versions: 2

Compression:

Stored size: 550 Bytes

Contents

require 'bundler/setup'

module Vim
  module Flavor
    [
      :CLI,
      :Facade,
      :Flavor,
      :FlavorFile,
      :LockFile,
      :StringExtension,
      :VERSION,
      :VersionConstraint,
    ].each do |name|
      autoload name, "vim-flavor/#{name.to_s().downcase()}"
    end

    class ::String
      include StringExtension
    end

    class << self
      @@dot_path = File.expand_path('~/.vim-flavor')

      def dot_path
        @@dot_path
      end

      def dot_path= path
        @@dot_path = path
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vim-flavor-0.0.4 lib/vim-flavor.rb
vim-flavor-0.0.3 lib/vim-flavor.rb