Class: Externals::GitProject

Inherits:
Project
  • Object
show all
Defined in:
lib/externals/scms/git_project.rb

Instance Attribute Summary

Attributes inherited from Project

#parent

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Project

#assert_e_dne_i_ni, attr_attr_accessor, #attributes, #checkout, default_branch, #export, inherited, #initialize, #main_project?, #name, #scm, scm, #scm_opts, #scm_opts=, #update_ignore

Constructor Details

This class inherits a constructor from Externals::Project

Class Method Details

.add_allObject

this is a test helper method



203
204
205
206
# File 'lib/externals/scms/git_project.rb', line 203

def self.add_all
  puts `git add .`
  raise unless $? == 0
end

.detected?Boolean

Returns:

  • (Boolean)


198
199
200
# File 'lib/externals/scms/git_project.rb', line 198

def self.detected?
  File.exists? ".git"
end

.fill_in_opts(opts, main_options, sub_options, options) ⇒ Object



190
191
192
193
194
195
196
# File 'lib/externals/scms/git_project.rb', line 190

def self.fill_in_opts opts, main_options, sub_options, options
  opts.on("--git", "-g",
    Integer,
    *"same as '--scm git'  Uses git to
    checkout/export the main project".lines_by_width(options[:summary_width])
  ) {sub_options[:scm] = main_options[:scm] = 'git'}
end

.scm_path?(path) ⇒ Boolean

Returns:

  • (Boolean)


186
187
188
# File 'lib/externals/scms/git_project.rb', line 186

def self.scm_path? path
  path =~ /^git:/ || path =~ /.git$/
end

Instance Method Details

#append_ignore(path) ⇒ Object



232
233
234
235
236
237
238
239
240
241
242
# File 'lib/externals/scms/git_project.rb', line 232

def append_ignore path
  rows = ignore_rows(path)

  return if rows.index path.strip

  rows << path.strip

  open('.gitignore', 'w') do |f|
    f.write "#{rows.compact.join("\n")}\n"
  end
end

#change_to_branch_revision(command = "") ⇒ Object

this method fetches/pulls/changes branches/changes revisions/changes the oil in your geo metro/brings world peace



45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# File 'lib/externals/scms/git_project.rb', line 45

def change_to_branch_revision command = ""
  opts = resolve_opts(command)

  pulled = false

  project_path = if path == "."
    name || "."
  else
    path
  end

  Dir.chdir project_path do
    do_fetch command
  end


  if branch
    cb = current_branch

    # This allows the main project to be checked out to a directory
    # that doesn't match it's name.
    Dir.chdir project_path do
      if cb != branch
        # let's see if the branch exists in the remote repository
        # and if not, fetch it.
        if !branch_exists("origin/#{branch}")
          do_fetch command
        end

        # if the local branch doens't exist, add --track -b
        if branch_exists(branch)
          puts `git #{opts} checkout #{branch}`
        else
          puts `git #{opts} checkout --track -b #{branch} origin/#{branch}`
        end
        unless $? == 0
          raise "Could not checkout origin/#{branch}"
        end
      end
    end

    # on the right branch, let's pull
    Dir.chdir project_path do
      `git #{opts} pull`
      raise unless $? == 0
      pulled = true
    end
  end

  if revision
    Dir.chdir project_path do
      puts `git #{opts} checkout #{revision}`
      unless $? == 0
        raise "Could not checkout #{revision}"
      end
    end
  else
    unless pulled
      Dir.chdir project_path do
        `git #{opts} pull`
        raise unless $? == 0
      end
    end
  end
end

#co(*args) ⇒ Object



30
31
32
# File 'lib/externals/scms/git_project.rb', line 30

def co *args
  do_up "co"
end

#current_branchObject



269
270
271
272
273
274
275
# File 'lib/externals/scms/git_project.rb', line 269

def current_branch
  Dir.chdir path do
    if `git #{scm_opts} branch -a` =~ /^\s*\*\s*([^\s]*)\s*$/
      $1
    end
  end
end

#current_revisionObject



261
262
263
264
265
266
267
# File 'lib/externals/scms/git_project.rb', line 261

def current_revision
  Dir.chdir path do
    if `git #{scm_opts} show HEAD` =~ /^\s*commit\s*([0-9a-fA-F]*)\s*$/i
      $1
    end
  end
end

#default_branchObject



5
6
7
# File 'lib/externals/scms/git_project.rb', line 5

def default_branch
  'master'
end

#drop_from_ignore(path) ⇒ Object



244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
# File 'lib/externals/scms/git_project.rb', line 244

def drop_from_ignore path
  ir = ignore_rows(path)
  rows = ir.select {|row| row.strip != path.strip}

  if rows.size == ir.size
    raise "row not found matching #{path} in .gitignore"
  end

  if ir.size - rows.size != 1
    raise "More than one row found matching #{path} in .gitignore"
  end

  open('.gitignore', 'w') do |f|
    f.write "#{rows.compact.join("\n")}\n"
  end
end

#ex(*args) ⇒ Object



138
139
140
141
142
143
# File 'lib/externals/scms/git_project.rb', line 138

def ex *args
  do_clone "ex", "--depth 1"

  puts "Exporting #{path}..."
  change_to_branch_revision "ex"
end

#extract_name(s) ⇒ Object



277
278
279
280
281
# File 'lib/externals/scms/git_project.rb', line 277

def extract_name s
  if s =~ /([^\/:]+?)(?:\.git|\.bundle)?$/
    $1
  end
end

#ignore_contains?(path) ⇒ Boolean

Returns:

  • (Boolean)


208
209
210
211
# File 'lib/externals/scms/git_project.rb', line 208

def ignore_contains? path
  text = ignore_text(path)
  text.split(/\n/).detect {|r| r.strip == path.strip}
end

#ignore_rows(path) ⇒ Object



222
223
224
225
226
227
228
229
230
# File 'lib/externals/scms/git_project.rb', line 222

def ignore_rows(path)
  rows = ignore_text(path) || ''

  rows = rows.split(/\n/)

  rows.delete_if {|row| row =~ /^\s*$/}

  rows
end

#ignore_text(path = nil) ⇒ Object



213
214
215
216
217
218
219
220
# File 'lib/externals/scms/git_project.rb', line 213

def ignore_text(path = nil)
  return '' unless File.exists? '.gitignore'
  retval = ''
  open('.gitignore') do |f|
    retval = f.read
  end
  retval
end

#st(*args) ⇒ Object



179
180
181
182
183
184
# File 'lib/externals/scms/git_project.rb', line 179

def st *args
  puts "\nstatus for #{path}:"
  Dir.chdir path do
    puts `git #{scm_opts_st} status`
  end
end

#switch(branch_name, options = {}) ⇒ Object



111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# File 'lib/externals/scms/git_project.rb', line 111

def switch branch_name, options = {}
  cb = current_branch
  if cb == branch_name
    puts "Already on branch #{branch_name}"
  else
    # This allows the main project to be checked out to a directory
    # that doesn't match it's name.
    Dir.chdir path do
      # let's see if the branch exists in the remote repository
      # and if not, fetch it.
      if !branch_exists("origin/#{branch_name}")
        puts `git #{scm_opts} fetch`
      end

      # if the local branch doens't exist, add --track -b
      if branch_exists(branch_name)
        puts `git #{scm_opts} checkout #{branch_name}`
      else
        puts `git #{resolve_opts("co")} checkout --track -b #{branch_name} origin/#{branch_name}`
      end
      unless $? == 0
        raise "Could not checkout origin/#{branch_name}"
      end
    end
  end
end

#up(*args) ⇒ Object



145
146
147
# File 'lib/externals/scms/git_project.rb', line 145

def up *args
  do_up "up"
end