ispunity 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/README CHANGED
@@ -22,7 +22,7 @@ install the additional dependencies as mentioned.
22
22
 
23
23
  5. bundle install
24
24
 
25
- 6. cp -v config/sample.json config/sample.json.bak
25
+ 6. cp -v config/configuration.json.example config/configuration.json
26
26
 
27
27
  7. modify the json file to suit your network.
28
28
 
@@ -1,9 +1,9 @@
1
1
  development:
2
2
  ubuntu:
3
3
  rt_table_path: '/etc/iproute2/rt_tables'
4
- config_file_path: 'config/sample.json'
4
+ config_file_path: 'config/configuration.json'
5
5
 
6
6
  test:
7
7
  ubuntu:
8
8
  rt_table_path: './spec/rt_tables'
9
- config_file_path: './spec/config/sample.json'
9
+ config_file_path: './spec/config/configuration.json'
@@ -4,12 +4,16 @@ require "isp_unity/version"
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = "ispunity"
7
- s.version = IspUnity::VERSION
7
+ s.version = "0.0.2"
8
8
  s.authors = ["Pratik Shah", "Siva Gollapalli", "Arun Tomar"]
9
9
  s.email = ["pratik14shah@gmail.com", "sivagollapalli@yahoo.com", "arun@solutionenterprises.co.in"]
10
10
  s.homepage = "http://www.ispunity.com"
11
11
  s.summary = %q{IspUnity is a open source framework, build to integrate (load balance & failover) multiple internet connections simultaneously}
12
12
  s.description = %q{With IspUnity, you can 1.Use multiple internet connections simultaneously and get all their throughput. 2.Automatic failover on working net connection if any on of the internet connection goes down.}
13
+ s.add_dependency("log4r", "~> 1.1.10")
14
+ s.add_dependency("i18n")
15
+ s.add_dependency("json")
16
+
13
17
 
14
18
  s.rubyforge_project = "ispunity"
15
19
 
@@ -61,12 +61,11 @@ module IspUnity
61
61
  SystemCall.execute('ip route flush cache')
62
62
  end
63
63
  end
64
-
64
+
65
65
  def version
66
- version = "0.0.1"
66
+ version = "0.0.2"
67
67
  end
68
-
69
-
68
+
70
69
  end
71
70
  end
72
71
 
@@ -0,0 +1,3 @@
1
+ module Ispunity
2
+ VERSION="0.0.2"
3
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ispunity
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -12,7 +12,55 @@ autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
14
  date: 2012-04-20 00:00:00.000000000 Z
15
- dependencies: []
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: log4r
18
+ requirement: !ruby/object:Gem::Requirement
19
+ none: false
20
+ requirements:
21
+ - - ~>
22
+ - !ruby/object:Gem::Version
23
+ version: 1.1.10
24
+ type: :runtime
25
+ prerelease: false
26
+ version_requirements: !ruby/object:Gem::Requirement
27
+ none: false
28
+ requirements:
29
+ - - ~>
30
+ - !ruby/object:Gem::Version
31
+ version: 1.1.10
32
+ - !ruby/object:Gem::Dependency
33
+ name: i18n
34
+ requirement: !ruby/object:Gem::Requirement
35
+ none: false
36
+ requirements:
37
+ - - ! '>='
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ type: :runtime
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ none: false
44
+ requirements:
45
+ - - ! '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ - !ruby/object:Gem::Dependency
49
+ name: json
50
+ requirement: !ruby/object:Gem::Requirement
51
+ none: false
52
+ requirements:
53
+ - - ! '>='
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ type: :runtime
57
+ prerelease: false
58
+ version_requirements: !ruby/object:Gem::Requirement
59
+ none: false
60
+ requirements:
61
+ - - ! '>='
62
+ - !ruby/object:Gem::Version
63
+ version: '0'
16
64
  description: With IspUnity, you can 1.Use multiple internet connections simultaneously
17
65
  and get all their throughput. 2.Automatic failover on working net connection if
18
66
  any on of the internet connection goes down.
@@ -29,8 +77,8 @@ files:
29
77
  - Gemfile
30
78
  - README
31
79
  - Rakefile
80
+ - config/configuration.json.example
32
81
  - config/locale/en.yml
33
- - config/sample.json
34
82
  - config/settings.yml
35
83
  - doc/algorithm.txt
36
84
  - isp_unity.gemspec
@@ -43,6 +91,7 @@ files:
43
91
  - lib/route/route.rb
44
92
  - lib/rule/rule.rb
45
93
  - lib/system_call.rb
94
+ - lib/version.rb
46
95
  - license
47
96
  - log/isp_unity.log
48
97
  - monitor.rb