Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 167
- Log:
Implemented account enumeration. Improved pagination and enumeration
"show details" mechanism; the HTTP referrer is used to return to the
list view to get the right page and list type. Obvious potential for
trouble if someone directly links to an item from an external site
but since the details items require administrative Hub access it is
unlikely to present a problem in real use.
- Author:
- rool
- Date:
- Mon Jan 01 14:14:35 +0000 2007
- Size:
- 1084 Bytes
1 | require 'rake' |
2 | |
3 | spec = Gem::Specification.new do |s| |
4 | s.platform = Gem::Platform::RUBY |
5 | s.name = 'hubssolib' |
6 | |
7 | s.version = '0.2.4' |
8 | s.author = 'Andrew Hodgkinson and others' |
9 | s.email = 'ahodgkin@rowing.org.uk' |
10 | s.homepage = 'http://pond.org.uk/ruby/hub/' |
11 | s.date = File.ctime('VERSION') |
12 | s.summary = 'Cross-application single sign-on support library.' |
13 | |
14 | s.description = <<-EOF |
15 | The Hub SSO Library supports single sign-on across multiple Rails |
16 | applications on the same host. The Hub application provides account |
17 | management facilities (sign up, log in, etc.). The library provides |
18 | read-only access to data set up by the application. Using the library, |
19 | external applications can see whether or not someone is logged in via |
20 | Hub and see what their assigned roles are. Each application determines |
21 | its own mappings between roles and permissions. |
22 | EOF |
23 | |
24 | s.files = FileList['lib/**/*.rb', '[A-Z]*'].to_a |
25 | s.has_rdoc = false # Sorry, no RDoc documentation yet |
26 | s.required_ruby_version = '>= 1.8.1' # Not tested on earlier versions |
27 | end |