csd 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/csd.gemspec +1 -1
  3. data/lib/apps/minisip.rb +6 -6
  4. metadata +2 -2
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.3
1
+ 0.0.4
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{csd}
8
- s.version = "0.0.3"
8
+ s.version = "0.0.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Technology Transfer Alliance Team"]
@@ -23,22 +23,22 @@ module CSD
23
23
  run_command("sudo apt-get install #{apt}")
24
24
  end
25
25
 
26
- unless File.directory?('trunk')
27
- log "Checking out minisip trunk"
28
- checkout_trunk
26
+ unless File.directory?('repository')
27
+ log "Checking out minisip repository"
28
+ checkout_repository
29
29
  end
30
30
 
31
31
  run_command "sudo echo /usr/local/share/aclocal >> /usr/share/aclocal/dirlist"
32
32
 
33
33
  ['libmutil', 'libmnetutil', 'libmcrypto', 'libmikey', 'libmsip', 'libmstun', 'libminisip'].each do |lib|
34
- Dir.chdir File.join(root_dir, 'trunk', lib)
34
+ Dir.chdir File.join(root_dir, 'repository', lib)
35
35
  log "Going through #{Dir.pwd}"
36
36
  end
37
37
 
38
38
  end
39
39
 
40
- def checkout_trunk
41
- run_command("git clone http://github.com/csd/minisip.git")
40
+ def checkout_repository
41
+ run_command("git clone http://github.com/csd/minisip.git repository")
42
42
  end
43
43
 
44
44
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 3
9
- version: 0.0.3
8
+ - 4
9
+ version: 0.0.4
10
10
  platform: ruby
11
11
  authors:
12
12
  - Technology Transfer Alliance Team