module Teaspoon::Bundle

Constants

ENDPOINT
VERSION

Public Class Methods

dir() click to toggle source
# File lib/teaspoon/bundle.rb, line 9
def dir
  @dir ||= create_dir
end

Private Class Methods

create_dir() click to toggle source
# File lib/teaspoon/bundle.rb, line 14
def create_dir
  dir = Rails.root.join('tmp/teaspoon-bundle')
  FileUtils.mkdir_p dir
  dir
end