/ontohub/lib/git_repository/ |
H A D | path_below_file_exception.rb | 1 class GitRepository::PathBelowFileException < StandardError class
|
H A D | path_not_found_error.rb | 1 class GitRepository::PathNotFoundError < StandardError class
|
H A D | get_folder_contents.rb | 1 module GitRepository::GetFolderContents module 2 # depends on GitRepository, GetCommit, GetObject 30 block.call GitRepository::Files::GitFile.new(self, rugged_commit, entry.path) 45 contents << GitRepository::Files::GitFile.new(self, rugged_commit, filepath) 50 contents << GitRepository::Files::GitFile.new(self, rugged_commit, filepath)
|
H A D | get_object.rb | 1 module GitRepository::GetObject module 2 # depends on GitRepository
|
H A D | get_diff.rb | 1 module GitRepository::GetDiff module 2 # depends on GitRepository 38 @mime_info ||= GitRepository.mime_info(name) 50 GitRepository.mime_type_editable?(mime_type) 56 patch = GitRepository::History::Commit.new(rugged_commit, *opts). 68 commit = GitRepository::History::Commit.new(rugged_commit)
|
H A D | config.rb | 1 module GitRepository::Config module
|
H A D | files.rb | 1 module GitRepository::Files module 2 # depends on GitRepository 20 raise GitRepository::PathNotFoundError, "Path doesn't exist: #{path}"
|
H A D | get_commit.rb | 1 module GitRepository::GetCommit module 2 # depends on GitRepository
|
H A D | committing.rb | 1 module GitRepository::Committing module 2 # depends on GitRepository 21 raise GitRepository::PathBelowFileException
|
H A D | get_info_list.rb | 1 module GitRepository::GetInfoList module 2 # depends on GitRepository, GetCommit, GetObject, GetFolderContents
|
H A D | cloning.rb | 3 module GitRepository::Cloning module
|
H A D | history.rb | 1 module GitRepository::History module 2 # depends on GitRepository
|
/ontohub/lib/ |
H A D | git_repository.rb | 3 class GitRepository class 6 include GitRepository::Config 7 include GitRepository::Cloning 8 include GitRepository::Files 9 include GitRepository::GetCommit 10 include GitRepository::GetObject 11 include GitRepository::GetDiff 12 include GitRepository::GetFolderContents 13 include GitRepository::GetInfoList 14 include GitRepository [all...] |
/ontohub/spec/lib/repository/import/ |
H A D | svn_spec.rb | 43 expect(GitRepository.is_svn_repository?(bare_url)).to be_truthy 47 expect(GitRepository.is_git_repository?(bare_url)).to be_falsy
|
H A D | git_spec.rb | 23 expect(GitRepository.is_svn_repository?(remote_repo.path)).to be_falsy 27 expect(GitRepository.is_git_repository?(remote_repo.path)).to be_truthy
|
/ontohub/spec/factories/ |
H A D | git_repository_factory.rb | 11 factory :git_repository_with_commits, class: GitRepository do |git_repository| 41 factory :git_repository_with_moved_ontologies, class: GitRepository do |git_repository| 82 factory :git_repository_small_push, class: GitRepository do |git_repository| 108 factory :git_repository_big_push, class: GitRepository do |git_repository| 149 factory :git_repository_big_commit, class: GitRepository do |git_repository|
|
H A D | repository_factory.rb | 13 git_repository = GitRepository.new(path) 35 git_repository = GitRepository.new(path)
|
/ontohub/app/models/repository/ |
H A D | importing.rb | 97 unless GitRepository.send "is_#{type}_repository?", source 125 if GitRepository.is_git_repository?(source_address) 127 elsif GitRepository.is_svn_repository?(source_address)
|
H A D | git.rb | 17 @git ||= GitRepository.new(local_path.to_s)
|
/ontohub/spec/lib/repository/ |
H A D | git_repository_spec.rb | 3 describe GitRepository do 21 let(:repository_new) { GitRepository.new(path) }
|
H A D | files_spec.rb | 8 let(:repository) { GitRepository.new(path) } 72 end.to raise_error(GitRepository::PathBelowFileException)
|
H A D | diff_spec.rb | 5 let(:repository) { GitRepository.new(path) }
|
/ontohub/app/fake_records/ |
H A D | history_entries_page.rb | 13 rescue GitRepository::PathNotFoundError
|
H A D | repository_file.rb | 26 rescue GitRepository::PathNotFoundError 32 raise(GitRepository::PathNotFoundError,
|
/ontohub/spec/models/ |
H A D | commit_spec.rb | 59 allow_any_instance_of(GitRepository). 61 allow_any_instance_of(GitRepository).
|