Class: FWToolkit::Project

Inherits:
Thor
  • Object
show all
Includes:
ThorUtils, Thor::Actions
Defined in:
lib/fwtoolkit/cli/project.rb

Instance Method Summary collapse

Methods included from ThorUtils

included

Methods included from Thor::Actions

#run, #run!, #run_base, #template_directory

Instance Method Details

#conf_gemset(project_root = Dir.pwd) ⇒ Object



58
59
60
61
62
63
64
65
66
67
68
69
# File 'lib/fwtoolkit/cli/project.rb', line 58

def conf_gemset(project_root=Dir.pwd)
  @project_name = File.basename(project_root)
  destination_root = project_root

  say 'Configuring Gemset'

  directory "templates/default_project/gemset", destination_root

  inside(destination_root) do
    bundle_update
  end
end

#create(project_name) ⇒ Object



18
19
20
# File 'lib/fwtoolkit/cli/project.rb', line 18

def create(project_name)
    invoke :new, ["swift", project_name, ""]
end

#new(project_language, project_name, class_prefix = "") ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/fwtoolkit/cli/project.rb', line 23

def new(project_language, project_name, class_prefix="")

  unless project_language == "swift" or project_language == "objc" 
    say_status :error, "Project language should be either swift or objc", :red
    return
  end

  if project_language == "objc" and class_prefix == ""
    say_status :error, "Objc projects require a class prefix", :red
    return
  end

  clean_project_name = project_name.gsub("-", "_")

  destination_root = File.join(Dir.pwd, clean_project_name)

  say "Creating new project in: #{File.expand_path destination_root}"

  invoke :conf_gemset, [destination_root]

  invoke FWToolkit::Bitrise, 'ios', [destination_root, clean_project_name]

  invoke FWToolkit::Xcode, 'new', [project_language, clean_project_name, class_prefix.upcase, File.join(Dir.pwd, clean_project_name)]
  invoke FWToolkit::Cocoapods, 'install', [destination_root]

  git_repo = GitClient::Repository.new destination_root
  
  if(git_repo.initialized?)
    say_status :skip, 'The git repository is already initialized', :yellow
  else
    invoke FWToolkit::Git, 'new', [destination_root]
  end
end

#update(project_root = Dir.pwd) ⇒ Object



72
73
74
75
76
77
78
# File 'lib/fwtoolkit/cli/project.rb', line 72

def update(project_root=Dir.pwd)
  bundle_update
  
  invoke FWToolkit::Git, 'update', [project_root]
  invoke FWToolkit::Cocoapods, 'install', [project_root]
  
end