ns_test 0.0.1

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.
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ NGNhMzQ5MzExNjBiZDhmNmM5MDUwNDcwY2IxYjdlNjUyYTQ2MzEyNA==
5
+ data.tar.gz: !binary |-
6
+ YmRlYTYwZmJhY2M4N2JlYWEwOTA4ODk0Y2QzM2E2MWZkZTFhYTQ0MA==
7
+ !binary "U0hBNTEy":
8
+ metadata.gz: !binary |-
9
+ MDllMWFmZDk5NWVhMmEzNTllOGZiNDA0NThhODlkZTVhNTgyMzY2NDU1ZTFi
10
+ MjNmZGUwNjFkZTY3M2RmMjJjNjE2ZjkxNGEyZWZiOGE2NjczNTFjMjVkZTM1
11
+ NWUwMGNjNDg5OTRkYWZmYzg1YmQ2YTdkODQ2ZjJiOWEzMzI0YTE=
12
+ data.tar.gz: !binary |-
13
+ OWMzMWY0ODI0NmQ2NWUyZTZjYWFjMzM3NDEzNjA0ZmJlZGE0ZDMyOGIwM2Rj
14
+ ZDk0ZjhkYTUyNTFlYzhiN2VkZWJlMTE3NWM1M2JiMDM0ZGFlN2EzM2IyYTJl
15
+ ZGE1MzZkYTVkMThjM2ZmYTRmOWY4NmM3NmJiMzBiYTZiYzhjNGE=
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2013 YOURNAME
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,3 @@
1
+ = NsTest
2
+
3
+ This project rocks and uses MIT-LICENSE.
data/Rakefile ADDED
@@ -0,0 +1,38 @@
1
+ #!/usr/bin/env rake
2
+ begin
3
+ require 'bundler/setup'
4
+ rescue LoadError
5
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
6
+ end
7
+ begin
8
+ require 'rdoc/task'
9
+ rescue LoadError
10
+ require 'rdoc/rdoc'
11
+ require 'rake/rdoctask'
12
+ RDoc::Task = Rake::RDocTask
13
+ end
14
+
15
+ RDoc::Task.new(:rdoc) do |rdoc|
16
+ rdoc.rdoc_dir = 'rdoc'
17
+ rdoc.title = 'NsTest'
18
+ rdoc.options << '--line-numbers'
19
+ rdoc.rdoc_files.include('README.rdoc')
20
+ rdoc.rdoc_files.include('lib/**/*.rb')
21
+ end
22
+
23
+
24
+
25
+
26
+ Bundler::GemHelper.install_tasks
27
+
28
+ require 'rake/testtask'
29
+
30
+ Rake::TestTask.new(:test) do |t|
31
+ t.libs << 'lib'
32
+ t.libs << 'test'
33
+ t.pattern = 'test/**/*_test.rb'
34
+ t.verbose = false
35
+ end
36
+
37
+
38
+ task :default => :test
@@ -0,0 +1,8 @@
1
+ class NetscalerController < ActionController::Base
2
+
3
+ def nstest
4
+ # Maybe do something else for application health?
5
+ render nothing: true, status: :ok
6
+ end
7
+
8
+ end
data/config/routes.rb ADDED
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+ # heartbeat for the netscaler
3
+ match "_ns_(/*any)" => "netscaler#nstest"
4
+ end
data/lib/ns_test.rb ADDED
@@ -0,0 +1,4 @@
1
+ require "ns_test/engine"
2
+
3
+ module NsTest
4
+ end
@@ -0,0 +1,4 @@
1
+ module NsTest
2
+ class Engine < ::Rails::Engine
3
+ end
4
+ end
@@ -0,0 +1,3 @@
1
+ module NsTest
2
+ VERSION = "0.0.1"
3
+ end
metadata ADDED
@@ -0,0 +1,65 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ns_test
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Neil Chambers
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-09-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 3.2.14
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 3.2.14
27
+ description:
28
+ email:
29
+ - neil.chambers@teamaol.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - app/controllers/netscaler_controller.rb
35
+ - config/routes.rb
36
+ - lib/ns_test/engine.rb
37
+ - lib/ns_test/version.rb
38
+ - lib/ns_test.rb
39
+ - MIT-LICENSE
40
+ - Rakefile
41
+ - README.rdoc
42
+ homepage:
43
+ licenses: []
44
+ metadata: {}
45
+ post_install_message:
46
+ rdoc_options: []
47
+ require_paths:
48
+ - lib
49
+ required_ruby_version: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ required_rubygems_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ! '>='
57
+ - !ruby/object:Gem::Version
58
+ version: '0'
59
+ requirements: []
60
+ rubyforge_project:
61
+ rubygems_version: 2.0.8
62
+ signing_key:
63
+ specification_version: 4
64
+ summary: Simple controller action for the netscaler tests
65
+ test_files: []