A summary of data about the Ruby ecosystem.

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

README.md

Akami

Building Web Service Security.

Ruby

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


GitHub Events

Total
Last Year

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 Email 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:


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

More stats: https://issues.ecosyste.ms/repositories/lookup?url=https://github.com/savonrb/akami

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

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

Gemfile rubygems
  • json >= 0
  • racc >= 0
  • rubinius-coverage >= 0
  • rubysl >= 0
akami.gemspec rubygems
  • rake ~> 10.0 development
  • rspec ~> 2.14 development
  • timecop ~> 0.5 development
  • gyoku >= 0.4.0
  • nokogiri >= 0
.github/workflows/ci.yml actions
  • actions/checkout v4 composite
  • ruby/setup-ruby v1 composite

Score: 25.782930376826638