Sashite

A Ruby client for the Sashite API.
Sashite provides a full API and an easy-to-use web interface so you can develop and play with a minimal amount of effort.
Contact
Rubies
Installation
Sashite is cryptographically signed.
To be sure the gem you install hasn't been tampered with, add my public key (if you haven't already) as a trusted certificate:
$ gem cert --add <(curl -Ls https://raw.github.com/sashite/sashite-ruby/master/certs/gem-sashite-public_cert.pem)
$ gem install sashite -P HighSecurity
The HighSecurity
trust profile will verify all gems. All of Sashite's dependencies are signed.
Or add this line to your application's Gemfile:
gem 'sashite'
And then execute:
$ bundle
Usage
This library is a Ruby client you can use to interact with the Sashite API.
Here's a short example.
require 'sashite'
client = Sashite::Client.new(token: 'YOUR_TOKEN')
puts "My email is #{client.user.email}"
Security
As a basic form of security Sashite provides a set of SHA512 checksums for
every Gem release. These checksums can be found in the checksum/
directory.
Although these checksums do not prevent malicious users from tampering with a
built Gem they can be used for basic integrity verification purposes.
The checksum of a file can be checked using the sha512sum
command. For
example:
$ sha512sum pkg/sashite-0.1.0.gem
e9e35e1953104e2d428b0f217e418db3c1baecd9e011b2545f9fcba4ff7e3bba674c6b928b3d8db842a139cd7cc9806d77ebdc7f710ece4f2aecb343703e2451 pkg/sashite-0.1.0.gem
Versioning
Sashite follows Semantic Versioning 2.0.
Contributing
- Fork it
- 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
License
See LICENSE.md
file.