ohloh_scm 3.0.13 → 3.0.14

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bf0cce0039d7ed0c71c841edf71fed33eb962093d88c149dd6c75a29b8f05425
4
- data.tar.gz: 900243a6614515e950e68cc8e2bfdbe790fa9651113d50bbb8a06b1d7ee76bae
3
+ metadata.gz: bbd14da8a1153f983dd2e092eae7ea3a032e368dbcdc74231b02fe144cd41c21
4
+ data.tar.gz: c417dbf9528efdf04df184eb5ace45f25f95ccef8fe5090b9bace379ce2cffc2
5
5
  SHA512:
6
- metadata.gz: b3cd4508600d221c9b3456f054e5845392d23e2483609d560afc3eeb137b16a786164d92df3a935b0fd5939f318f6f48844f84a32b247ac3ab094dec2abb7715
7
- data.tar.gz: c4649e65d09e9639876344ab6e9ed89ba81396809a80fa26278b0488ec43c81fcc4d44db093fdeceed9a42cfbd9b2360e2bb1db3861691881088fe7b47a80651
6
+ metadata.gz: 5996521cf024e5916ef08d08918c96e84962da90d4b6938fe184c0df7ea6663349dd93d6031bb4743febb9c05d4ba70f95fcdee976c57d6b3a9d785fcf2f903b
7
+ data.tar.gz: efa53ddd6be82af4a9f173b7b3c196da3d52ea74b9f662394ef9279f1cb85c91dd288654f0e075dcef43230d9314a030b1aef79d54f25a4801107b746b1a39f6
data/README.md CHANGED
@@ -20,17 +20,13 @@ One may use Docker to run Ohloh SCM and test changes.
20
20
  ```sh
21
21
  $ git clone https://github.com/blackducksoftware/ohloh_scm
22
22
  $ cd ohloh_scm
23
- $ git checkout -b v3
23
+ $ docker build -t ohloh_scm:foobar .
24
24
 
25
25
  # To run all tests, we need to start the ssh server and set UTF-8 locale for encoding tests.
26
26
  $ cmd='/etc/init.d/ssh start; LANG=en_US.UTF-8 rake test 2> /dev/null'
27
- $ docker run -P -v $(pwd):/home/app/ohloh_scm -ti ohdeployer/ohloh_scm:ubuntu18 /bin/sh -c "$cmd"
27
+ $ docker run --rm -P -v $(pwd):/home/app/ohloh_scm -ti ohloh_scm:foobar /bin/sh -c "$cmd"
28
28
  # This mounts the current folder into the docker container;
29
29
  # hence any edits made in ohloh_scm on the host machine would reflect in the container.
30
-
31
- # One may also edit the Dockerfile & build the image locally for other distros.
32
- $ docker build -t ohloh_scm:custom .
33
- $ docker run -P -v $(pwd):/home/app/ohloh_scm -ti ohloh_scm:custom /bin/bash
34
30
  ```
35
31
 
36
32
  ## Development Setup
@@ -66,7 +66,7 @@ module OhlohScm
66
66
  return if branch_name.to_s.empty?
67
67
  return if activity.branches.include?(branch_name)
68
68
 
69
- run "cd '#{url}' && git branch -f #{branch_name} origin/#{branch_name}"
69
+ run "cd '#{url}' && git remote update && git branch -f #{branch_name} origin/#{branch_name}"
70
70
  end
71
71
 
72
72
  # Deletes everything but the *.git* folder in the working directory.
@@ -2,7 +2,7 @@
2
2
 
3
3
  module OhlohScm
4
4
  module Version
5
- STRING = '3.0.13'
5
+ STRING = '3.0.14'
6
6
  GIT = '2.17.1'
7
7
  SVN = '1.9.7'
8
8
  CVSNT = '2.5.04'
@@ -33,6 +33,27 @@ describe 'Git::Scm' do
33
33
  end
34
34
  end
35
35
 
36
+ it 'must update branches in local copy' do
37
+ test_branch_name = 'test' # consider that 'test' is the current *main* branch.
38
+
39
+ with_git_repository('git_with_multiple_branch', test_branch_name) do |src_core|
40
+ tmpdir do |dest_dir|
41
+ core = OhlohScm::Factory.get_core(scm_type: :git, url: dest_dir, branch_name: test_branch_name)
42
+ core.scm.pull(src_core.scm, TestCallback.new)
43
+
44
+ # Emulate a scenario where the local copy doesn't have the current *main* branch.
45
+ `cd #{dest_dir} && git checkout master && git branch -D test`
46
+
47
+ local_branch_cmd = "cd #{dest_dir} && git branch | grep '\*' | sed 's/^\* //'"
48
+ `#{ local_branch_cmd }`.chomp.must_equal 'master'
49
+
50
+ # On doing a refetch, our local copy will now have the updated *main* branch.
51
+ core.scm.pull(src_core.scm, TestCallback.new)
52
+ `#{ local_branch_cmd }`.chomp.must_equal test_branch_name
53
+ end
54
+ end
55
+ end
56
+
36
57
  it 'must test the basic conversion to git' do
37
58
  with_cvs_repository('cvs', 'simple') do |src_core|
38
59
  tmpdir do |dest_dir|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ohloh_scm
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.13
4
+ version: 3.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenHub Team at Synopsys
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-04-29 00:00:00.000000000 Z
11
+ date: 2021-06-23 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |-
14
14
  The OpenHub source control management library for \