https://github.com/savonrb/akami
Building Web Service Security
https://github.com/savonrb/akami
Keywords from Contributors
soap soap-client activejob activerecord mvc rubygems rspec rubocop code-formatter static-code-analysis
Last synced: 13 minutes ago
JSON representation
Repository metadata
Building Web Service Security
- Host: GitHub
- URL: https://github.com/savonrb/akami
- Owner: savonrb
- License: mit
- Created: 2011-07-03T20:20:44.000Z (over 14 years ago)
- Default Branch: main
- Last Pushed: 2025-02-02T20:29:08.000Z (about 1 year ago)
- Last Synced: 2026-02-26T19:43:16.622Z (5 days ago)
- Language: Ruby
- Homepage:
- Size: 108 KB
- Stars: 37
- Watchers: 4
- Forks: 63
- Open Issues: 9
- Releases: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
README.md
Akami
Building Web Service Security.
The XML namespaces used by this gem begin with http://docs.oasis-open.org/wss/2004/01/. That URL has PDF documentation of "Web Services Security UsernameToken Profile 1.0" and "Web Services Security: SOAP Message Security 1.0 (WS-Security 2004)".
To place this in a historical context Wikipedia on WS-Security mentions "wsse" namespace prefix in its History section.
Installation
Akami is available through Rubygems and can be installed via:
$ gem install akami
Getting started
wsse = Akami.wsse
Set the credentials for wsse:UsernameToken basic auth:
wsse.credentials "username", "password"
Set the credentials for wsse:UsernameToken digest auth:
wsse.credentials "username", "password", :digest
Enable wsu:Timestamp headers. wsu:Created is automatically set to Time.now
and wsu:Expires is set to Time.now + 60:
wsse.timestamp = true
Manually specify the values for wsu:Created and wsu:Expires:
wsse.created_at = Time.now
wsse.expires_at = Time.now + 60
Akami is based on an autovivificating Hash. So if you need to add custom tags, you can add them.
wsse["wsse:Security"]["wsse:UsernameToken"] = { "Organization" => "ACME" }
When generating the XML for the request, this Hash will be merged with another Hash containing
all the default tags and values.
This way you might dig into some code, but then you can even overwrite the default values.
wsse.to_xml
Owner metadata
- Name: savonrb
- Login: savonrb
- Email:
- Kind: organization
- Description:
- Website: https://www.savonrb.com/
- Location:
- Twitter: savonrb
- Company:
- Icon url: https://avatars.githubusercontent.com/u/2353495?v=4
- Repositories: 12
- Last ynced at: 2024-03-25T19:56:36.386Z
- Profile URL: https://github.com/savonrb
GitHub Events
Total
- Pull request event: 3
- Fork event: 3
- Watch event: 2
- Issue comment event: 3
- Push event: 1
- Pull request review event: 1
Last Year
- Pull request event: 1
- Fork event: 1
- Watch event: 1
- Issue comment event: 1
- Pull request review event: 1
Committers metadata
Last synced: 1 day ago
Total Commits: 67
Total Committers: 17
Avg Commits per committer: 3.941
Development Distribution Score (DDS): 0.821
Commits in past year: 0
Committers in past year: 0
Avg Commits per committer in past year: 0.0
Development Distribution Score (DDS) in past year: 0.0
| Name | Commits | |
|---|---|---|
| rubiii | me@r****m | 12 |
| Tim Jarratt | t****t@g****m | 11 |
| Peter Cai | 2****i | 9 |
| Olle Jonsson | o****n@g****m | 7 |
| Tim Jarratt | p****t@g****m | 6 |
| Andrey Novikov | e****k@e****e | 5 |
| brainopia | b****a@e****m | 4 |
| Douglas Eichelberger | d****g@g****m | 3 |
| hoverlover | h****r@g****m | 2 |
| Adam Eberlin | ae@a****m | 1 |
| Darren Cheng | d****n@t****m | 1 |
| Dave Byrne | d****2@g****m | 1 |
| Jacob Kjeldahl | j****b@k****t | 1 |
| Jess Bowers | j****2@m****m | 1 |
| Phil Brockwell | p****l@h****v | 1 |
| Oren Forer | o****n@c****m | 1 |
| Tonči Damjanić | t****c@g****m | 1 |
Committer domains:
- chloeandisabel.com: 1
- honeycomb.tv: 1
- me.com: 1
- kjeldahl.it: 1
- thanx.com: 1
- adameberlin.com: 1
- evilmartians.com: 1
- envek.name: 1
- rubiii.com: 1
Issue and Pull Request metadata
Last synced: 3 days ago
Total issues: 14
Total pull requests: 39
Average time to close issues: almost 3 years
Average time to close pull requests: about 2 years
Total issue authors: 11
Total pull request authors: 22
Average comments per issue: 2.14
Average comments per pull request: 1.87
Merged pull request: 21
Bot issues: 0
Bot pull requests: 0
Past year issues: 0
Past year pull requests: 5
Past year average time to close issues: N/A
Past year average time to close pull requests: about 2 months
Past year issue authors: 0
Past year pull request authors: 2
Past year average comments per issue: 0
Past year average comments per pull request: 0.6
Past year merged pull request: 1
Past year bot issues: 0
Past year bot pull requests: 0
Top Issue Authors
- rderoldan1 (3)
- jim0020 (2)
- olleolleolle (1)
- waynerobinson (1)
- allquixotic (1)
- toncid (1)
- owst (1)
- carlost (1)
- alebian (1)
- martinthurn (1)
- duanemaxwell (1)
Top Pull Request Authors
- olleolleolle (6)
- kjeldahl (4)
- phil-l-brockwell (3)
- drn (3)
- Envek (3)
- dduugg (2)
- aeberlin (2)
- kenhys (2)
- vkoivula (1)
- fauresebast (1)
- wallace (1)
- toncid (1)
- federicolucca (1)
- pcai (1)
- brainopia (1)
Top Issue Labels
Top Pull Request Labels
Package metadata
- Total packages: 2
-
Total downloads:
- rubygems: 186,999,221 total
- Total docker downloads: 14,451,552
- Total dependent packages: 18 (may contain duplicates)
- Total dependent repositories: 3,979 (may contain duplicates)
- Total versions: 18
- Total maintainers: 4
gem.coop: akami
Building Web Service Security
- Homepage: https://github.com/savonrb/akami
- Documentation: http://www.rubydoc.info/gems/akami/
- Licenses: MIT
- Latest release: 1.3.3 (published about 2 years ago)
- Last Synced: 2026-02-27T19:31:11.734Z (4 days ago)
- Versions: 9
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 93,489,839 Total
- Docker Downloads: 7,225,776
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.101%
- Downloads: 0.304%
- Maintainers (4)
rubygems.org: akami
Building Web Service Security
- Homepage: https://github.com/savonrb/akami
- Documentation: http://www.rubydoc.info/gems/akami/
- Licenses: MIT
- Latest release: 1.3.3 (published about 2 years ago)
- Last Synced: 2026-02-28T16:00:38.185Z (3 days ago)
- Versions: 9
- Dependent Packages: 18
- Dependent Repositories: 3,979
- Downloads: 93,509,382 Total
- Docker Downloads: 7,225,776
-
Rankings:
- Downloads: 0.265%
- Dependent repos count: 0.497%
- Dependent packages count: 1.133%
- Docker downloads count: 1.743%
- Average: 2.669%
- Forks count: 3.361%
- Stargazers count: 9.011%
- Maintainers (4)
Dependencies
- json >= 0
- racc >= 0
- rubinius-coverage >= 0
- rubysl >= 0
- rake ~> 10.0 development
- rspec ~> 2.14 development
- timecop ~> 0.5 development
- gyoku >= 0.4.0
- nokogiri >= 0
- actions/checkout v4 composite
- ruby/setup-ruby v1 composite
Score: 25.782930376826638