shibboleths_lil_helper 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.markdown CHANGED
@@ -10,25 +10,11 @@ Shibboleth's Lil Helper is a tool that automates the generation of Apache/IIS Sh
10
10
 
11
11
  * __Providing conceptually simple linear process__ that distills the main steps associated with Shibboleth integration.
12
12
 
13
- IMPORTANT NOTE/DISCLAIMER
13
+ DISCLAIMER
14
14
  -------------------------
15
15
  All you see here on Github is the readme, no code yet.
16
- For that to happen two things need to occur:
17
-
18
- * We need to battle-test the (working) code across our entire
19
- infrastructure and fix bugs before releasing.
20
-
21
- * Someone from the IDM team within OIT needs approve that our approach
22
- is solid and endorse its usage for the U of M.
23
-
24
- **The current status as of October 6th, 2011**
25
-
26
- * We have it working in PHP, .NET, and Rails on 2 servers and 4 vhosts for Apache and IIS.
27
-
28
- * Assuming no snags (cause that never happens in software, :)), we
29
- anticipate 90% of our infrastructure migrated by Nov 1st. At which
30
- point we hope to release this code into the wild. And perhaps do a demo
31
- session at a Code-People meeting.
16
+ This is released as a RubyGem right now, we hope to push the source up
17
+ here once things stabilize further
32
18
 
33
19
  Why another tool?
34
20
  -----------------
@@ -47,15 +33,10 @@ Installation
47
33
  * Rubygems: http://rubygems.org/pages/download
48
34
  * Bundler: gem install bundler
49
35
 
50
- * From github:
51
-
52
- git clone git://github.com/joegoggins/shibboleths_lil_helper.git
53
- cd shibboleths_lil_helper
54
- bundle
55
- ./bin/slh
56
- (then follow instructions)
57
-
58
- * Via Ruby Gems: Not working yet
36
+ * Via Ruby Gems:
37
+ * gem install shibboleths_lil_helper
38
+ * Then type `slh` -- this provides more detailed/actionable
39
+ documentation
59
40
 
60
41
  Assumptions
61
42
  ===========
@@ -189,7 +170,7 @@ Email Us
189
170
  ----------------------
190
171
  * Let us know you are interested in using the tool.
191
172
 
192
- * Voice you ideas about questions you have and features you'd like to see.
173
+ * Voice your ideas about questions you have and features you'd like to see.
193
174
 
194
175
  Authors
195
176
  =======
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.0.1
@@ -7,6 +7,13 @@ Slh.for_strategy :test_idp do
7
7
  # UNCOMMENT THIS IF YOUR SHIB STUFF LIVES IN A NON-STANDARD LOCATION
8
8
  # set :shib_prefix, '/swadm/etc/shibboleth'
9
9
  for_site 'SOMESITENAME1.COM' do
10
+ # Each strategy must set this for exactly one site
11
+ # its used as the authoritative source to from which all other
12
+ # sites metadata's X509Certificate should match
13
+ # the sp-key.pem and sp-cert.pem files from this host should be
14
+ # copied to all other hosts underneath the strategy
15
+ #
16
+ set :is_key_originator, true
10
17
  protect 'SOME_PATH_YOU_WANT_TO_REQUIRE_AUTH'
11
18
  end
12
19
  for_site 'SOMESITENAME2.COM' do
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{shibboleths_lil_helper}
8
- s.version = "1.0.0"
8
+ s.version = "1.0.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Joe Goggins"]
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 0
8
- - 0
9
- version: 1.0.0
8
+ - 1
9
+ version: 1.0.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Joe Goggins