Skip to content

Commit 101bcb8

Browse files
committed
Rename to smartvpn
1 parent 710547a commit 101bcb8

9 files changed

+12
-13
lines changed

Gemfile.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
openvpn-http-hooks (1.0.6)
4+
smartvpn-http-hooks (1.0.7)
55

66
GEM
77
remote: https://rubygems.org/
@@ -31,9 +31,9 @@ PLATFORMS
3131

3232
DEPENDENCIES
3333
mocha
34-
openvpn-http-hooks!
3534
rspec
35+
smartvpn-http-hooks!
3636
webmock
3737

3838
BUNDLED WITH
39-
1.11.0
39+
1.17.1

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#### openvpn-http-hooks
1+
# smartvpn-http-hooks
22

33
This ruby gem is wrapper for OpenVPN server daemon.
44

Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/ruby
22

3-
require 'openvpn-http-hooks'
3+
require 'smartvpn-http-hooks'
44

55
api = Api::Activation.new
66
api.activate

bin/openvpn-authenticate renamed to bin/smartvpn-authenticate

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/ruby
22

3-
require 'openvpn-http-hooks'
3+
require 'smartvpn-http-hooks'
44

55
api_adapter_class = Api::Authentication
66

Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/ruby
22

3-
require 'openvpn-http-hooks'
3+
require 'smartvpn-http-hooks'
44

55
connection = Api::Connect.new
66
connection.invoke

bin/openvpn-disconnect renamed to bin/smartvpn-disconnect

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/ruby
22

3-
require 'openvpn-http-hooks'
3+
require 'smartvpn-http-hooks'
44

55
connection = Api::Disconnect.new
66
connection.invoke
File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
Gem::Specification.new do |s|
2-
s.name = 'openvpn-http-hooks'
2+
s.name = 'smartvpn-http-hooks'
33
s.version = '1.0.7'
44
s.date = '2019-01-08'
55
s.summary = "HTTP hooks for OpenVPN server"
66
s.description = "Trigger on openvpn events and notify HTTP API"
77
s.authors = ["Stanislav Mekhonoshin"]
88
s.email = '[email protected]'
99
s.files = `git ls-files`.split($/)
10-
s.homepage = 'https://github.com/Mehonoshin/openvpn-http-hooks'
11-
s.executables = ['openvpn-activate', 'openvpn-authenticate', 'openvpn-connect', 'openvpn-disconnect']
10+
s.homepage = 'https://github.com/Mehonoshin/smartvpn-http-hooks'
11+
s.executables = ['smartvpn-activate', 'smartvpn-authenticate', 'smartvpn-connect', 'smartvpn-disconnect']
1212
s.license = 'MIT'
1313
s.require_path = 'lib'
1414
s.add_development_dependency 'rspec', ['>= 0']
1515
s.add_development_dependency 'mocha'
1616
s.add_development_dependency 'webmock'
17-
1817
end

spec/spec_helper.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
require 'rspec/autorun'
22
require 'webmock/rspec'
3-
require 'openvpn-http-hooks'
3+
require 'smartvpn-http-hooks'
44

55
RSpec.configure do |config|
66
config.mock_with :mocha

0 commit comments

Comments
 (0)