netid-tools 0.3.9 → 0.3.10
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.
- data/netid-tools.gemspec +3 -5
- metadata +3 -5
- data/test/helper.rb +0 -18
- data/test/test_netid-tools.rb +0 -7
data/netid-tools.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "netid-tools"
|
8
|
-
s.version = "0.3.
|
8
|
+
s.version = "0.3.10"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Nikky Southerland"]
|
12
|
-
s.date = "2013-06-
|
12
|
+
s.date = "2013-06-19"
|
13
13
|
s.description = "Gem with various methods to support UW NetIDs"
|
14
14
|
s.email = "nikky@uw.edu"
|
15
15
|
s.executables = ["ua_check"]
|
@@ -26,9 +26,7 @@ Gem::Specification.new do |s|
|
|
26
26
|
"VERSION",
|
27
27
|
"bin/ua_check",
|
28
28
|
"lib/netid-tools.rb",
|
29
|
-
"netid-tools.gemspec"
|
30
|
-
"test/helper.rb",
|
31
|
-
"test/test_netid-tools.rb"
|
29
|
+
"netid-tools.gemspec"
|
32
30
|
]
|
33
31
|
s.homepage = "http://github.com/allynfolksjr/netid-tools"
|
34
32
|
s.licenses = ["Apache License, Version 2.0"]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: netid-tools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.10
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-06-
|
12
|
+
date: 2013-06-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: nokogiri
|
@@ -189,8 +189,6 @@ files:
|
|
189
189
|
- bin/ua_check
|
190
190
|
- lib/netid-tools.rb
|
191
191
|
- netid-tools.gemspec
|
192
|
-
- test/helper.rb
|
193
|
-
- test/test_netid-tools.rb
|
194
192
|
homepage: http://github.com/allynfolksjr/netid-tools
|
195
193
|
licenses:
|
196
194
|
- Apache License, Version 2.0
|
@@ -206,7 +204,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
206
204
|
version: '0'
|
207
205
|
segments:
|
208
206
|
- 0
|
209
|
-
hash: -
|
207
|
+
hash: -2481223932696778929
|
210
208
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
211
209
|
none: false
|
212
210
|
requirements:
|
data/test/helper.rb
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
require 'rubygems'
|
2
|
-
require 'bundler'
|
3
|
-
begin
|
4
|
-
Bundler.setup(:default, :development)
|
5
|
-
rescue Bundler::BundlerError => e
|
6
|
-
$stderr.puts e.message
|
7
|
-
$stderr.puts "Run `bundle install` to install missing gems"
|
8
|
-
exit e.status_code
|
9
|
-
end
|
10
|
-
require 'test/unit'
|
11
|
-
require 'shoulda'
|
12
|
-
|
13
|
-
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
14
|
-
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
15
|
-
require 'netid-tools'
|
16
|
-
|
17
|
-
class Test::Unit::TestCase
|
18
|
-
end
|