passkit
Version, currently 0.1.01 version
- 0.1.0latestAug 5, 2020
github.com/red-ant/passkit
Crystal PassKit shard
3 stars
0 dependents
License: not declared
Installation
# Add this to your shard.yml
dependencies:
passkit:
github: red-ant/passkit
version: ~> 0.1.0Then run:
shards installshard.yml
- Crystal
0.35.1
Dependencies
Development Dependencies
- webmock*github: manastech/webmock.cr, branch: masterdev
README
PassKit
Crystal shard for creating signed Apple Passes.
Installation
-
Add the dependency to your
shard.yml:dependencies: passkit: github: red-ant/passkit -
Run
shards install
Configuration
Configuration is achieved by specifying paths to various certificates private keys.
# Pass certificate
export SIGNING_CERT=/path/to/cert.pem
# Pass key certificate
export PRIVATE_KEY=/path/to/passkey.pem
# Pass key certificate password (optional)
export PRIVATE_KEY_PASSWORD=purplemonkeydishwasher
# Apple Worldwide Developer Relations Certification Authority certificate
export WWDR_CERT=/path/to/wwdr.pem
Usage
require "passkit"
# Create a new pass definition
pass = PassKit::Pass.new(
pass_type_identifier: "pass.com.example",
organization_name: "Willy Wonka",
serial_number: "12345",
team_identifier: "TM123",
description: "The golden ticket",
logo_text: "Willy Wonka inc."
)
# Or ingest a pass.json
pass = PassKit::Pass.from_json(File.read("pass.json"))
# Now generate a signed .pkpass file
pk_pass = PassKit::PKPass.new(pass)
# Add some file or URL
pk_pass.add_file("icon.png", File.read("my_icon.png"))
pk_pass.add_url("http://example.org/icon.png")
# Do something with the generated file
File.write("GoldenTicket.pkpass", pk_pass.to_s)
Contributing
- Fork it (https://github.com/red-ant/passkit/fork)
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request
Documentation
Built from the current release. The first visit to a release nobody has asked for starts its build.
Links
This release
- Version
0.1.0- Tagged
- Aug 5, 2020
- Commit
c55818c26372- Crystal
0.35.1- Indexed
- yes
Dependents
No indexed shard depends on this one yet.
Repository
github.com/red-ant/passkit
Metadata
- Created
- Aug 12, 2026
- Updated
- Aug 13, 2026
- Synced
- Aug 13, 2026
- Versions
- 1