Sha256: fb03c72b67105b2944e41541e6c6357a69ac4de1b054962f486adbb792d1f2d3

Contents?: true

Size: 915 Bytes

Versions: 5

Compression:

Stored size: 915 Bytes

Contents

# The Flutter modules name-spaces all the classes for Flutter.
#
module Flutter
  # The flutter command name.
  #
  NAME = 'flutter'.freeze
  # The directory name for flutter specific
  # files in a flutter project.
  #
  DIR_NAME = 'Flutter'.freeze
  # The Pub modules name-spaces all the classes for Flutter Pub.
  #
  module Pub
    # The file name for flutter specification declaration.
    #
    SPEC_FILE = 'pubspec.yaml'.freeze
    # The folder name containing flutter dependencies cache files.
    #
    TOOL_DIR = '.dart_tool'.freeze
    # The cache file name for flutter projects.
    #
    CACHE_FILE = 'package_config.json'.freeze

    require 'cocoapods-embed-flutter/flutter/downloader'
    require 'cocoapods-embed-flutter/flutter/external_sources'

    autoload :Dependency,  'cocoapods-embed-flutter/flutter/dependency'
    autoload :Spec,        'cocoapods-embed-flutter/flutter/pubspec'
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
cocoapods-embed-flutter-0.6.1 lib/cocoapods-embed-flutter/flutter.rb
cocoapods-embed-flutter-0.6.0 lib/cocoapods-embed-flutter/flutter.rb
cocoapods-embed-flutter-0.5.3 lib/cocoapods-embed-flutter/flutter.rb
cocoapods-embed-flutter-0.5.2 lib/cocoapods-embed-flutter/flutter.rb
cocoapods-embed-flutter-0.5.1 lib/cocoapods-embed-flutter/flutter.rb