Class: CommitLive::Submit::GitHelper

Inherits:
Object
  • Object
show all
Defined in:
lib/commit-live/lesson/git-helper.rb

Constant Summary collapse

REPO_BELONGS_TO_US =
[
	'commit-live-students'
]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeGitHelper

Returns a new instance of GitHelper.



17
18
19
20
21
22
# File 'lib/commit-live/lesson/git-helper.rb', line 17

def initialize()
	@git = setGit
	@netrc = CommitLive::NetrcInteractor.new()
	@currentLesson = CommitLive::Current.new
	@status = CommitLive::Status.new
end

Instance Attribute Details

#currentLessonObject (readonly)

Returns the value of attribute currentLesson.



10
11
12
# File 'lib/commit-live/lesson/git-helper.rb', line 10

def currentLesson
  @currentLesson
end

#gitObject (readonly)

Returns the value of attribute git.



10
11
12
# File 'lib/commit-live/lesson/git-helper.rb', line 10

def git
  @git
end

#netrcObject (readonly)

Returns the value of attribute netrc.



10
11
12
# File 'lib/commit-live/lesson/git-helper.rb', line 10

def netrc
  @netrc
end

#remote_nameObject

Returns the value of attribute remote_name.



11
12
13
# File 'lib/commit-live/lesson/git-helper.rb', line 11

def remote_name
  @remote_name
end

#statusObject (readonly)

Returns the value of attribute status.



10
11
12
# File 'lib/commit-live/lesson/git-helper.rb', line 10

def status
  @status
end

Instance Method Details

#commitAndPushObject



24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/commit-live/lesson/git-helper.rb', line 24

def commitAndPush
	checkRemote
	testCasePassed = CommitLive::Test.new().run(false)
	if testCasePassed
		addChanges
		commitChanges

		push
		createPullRequest
		update_lesson_status
	else
		puts "..."
		puts "Please make sure all test cases pass before submitting!"
		exit
	end
end