cas-client 0.1.1.pre.p0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 35f49c83390fe15a8ee046690887ead24b9592d518d7b837619c39c7edf40986
4
- data.tar.gz: db14816744a4f378e67383ca18e28b9217244d358bbc3fe7a244d9e05f74e5db
3
+ metadata.gz: 96baa1db33fae644eec3bfb28abaa0c3daf4fec7f462eac40a6e5507d9dec14d
4
+ data.tar.gz: 89b8e77e15703e848475763d43758d6556ff6b36c4f2126ddcdf5cefc2282b4f
5
5
  SHA512:
6
- metadata.gz: 6da1481221158ece9032aa5101807c1f4d9185fa0abcf6df69b7693e329adff6cdabc806cf448e5c2689d25f80d8bccca495b54d331e40627c3c13014a90f7c9
7
- data.tar.gz: 6c4aabcb5af8320cb2836176f8529b84f781874b6ae34526fb9cd091eebf39c1b336649bdbe0e618eac07647e1c93b7bff22a7406f98381aa0b8160c9dd957ec
6
+ metadata.gz: 411c50fa37dcb0ffa14961af8205c49d2eb3bbf79617a4f498d096e6c89b199d62a5abde7a0c218b6e117b94d8e5745afb96ca878ebc15b8babe5ff2446dbe2b
7
+ data.tar.gz: ac2ad4790bfe1d4bc4e901fd91a3c6d5601aa8bdd7e5fdbcaba9f4fe227b01957adc6778d4a0c37314660d07e50f33cf7323d990aad0551993de374c788b92c9
data/.gitignore CHANGED
@@ -6,7 +6,6 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
- *.gem
10
9
 
11
10
  # rspec failure tracking
12
11
  .rspec_status
@@ -1,11 +1,11 @@
1
1
 
2
2
  lib = File.expand_path("../lib", __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require "cas/client/version"
4
+ require "cas_client/version"
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "cas-client"
8
- spec.version = Cas::Client::VERSION
8
+ spec.version = CasClient::VERSION
9
9
  spec.authors = ["Donavan White"]
10
10
  spec.email = ["donavan.white@americanfinancing.net"]
11
11
 
@@ -0,0 +1,3 @@
1
+ module CasClient
2
+ VERSION = "0.1.1"
3
+ end
data/lib/cas_client.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "cas_client/middleware"
2
+ require "cas_client/version"
3
+
4
+ module CASClient
5
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cas-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1.pre.p0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Donavan White
@@ -69,10 +69,9 @@ files:
69
69
  - Rakefile
70
70
  - bin/console
71
71
  - bin/setup
72
- - cas-client.gemspec
73
- - lib/cas-client.rb
74
- - lib/cas/client/rack.rb
75
- - lib/cas/client/version.rb
72
+ - cas_client.gemspec
73
+ - lib/cas_client.rb
74
+ - lib/cas_client/version.rb
76
75
  homepage: ''
77
76
  licenses:
78
77
  - MIT
@@ -88,9 +87,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
88
87
  version: '0'
89
88
  required_rubygems_version: !ruby/object:Gem::Requirement
90
89
  requirements:
91
- - - ">"
90
+ - - ">="
92
91
  - !ruby/object:Gem::Version
93
- version: 1.3.1
92
+ version: '0'
94
93
  requirements: []
95
94
  rubyforge_project:
96
95
  rubygems_version: 2.7.6
@@ -1,22 +0,0 @@
1
- module Cas
2
- module Client
3
- class Rack
4
- def initialize(app)
5
- @app = app
6
- end
7
-
8
- def call(env)
9
- puts "CAS Client Called from Rack!"
10
- status, headers, response = @app.call(env)
11
-
12
- response_body = ""
13
- response.each { |part| response_body += part }
14
- response_body += "CAS Client Called!!!"
15
-
16
- headers["Content-Length"] = response_body.length.to_s
17
-
18
- [status, headers, response_body]
19
- end
20
- end
21
- end
22
- end
@@ -1,5 +0,0 @@
1
- module Cas
2
- module Client
3
- VERSION = "0.1.1-p0"
4
- end
5
- end
data/lib/cas-client.rb DELETED
@@ -1,6 +0,0 @@
1
- require 'client/version'
2
-
3
- module Cas
4
- module Client
5
- end
6
- end