Git worktree workspace manager — templates, workspaces, and multi-repo orchestration
Utilities to diff CDK stacks against CloudFormation templates
Common Stacks utilities
Javascript library for constructing transactions on the Stacks blockchain.
An Error subclass that will chain nested Errors and dump nested stacktraces
AWS CDK CLI, the command line tool for CDK apps
Library for Stacks network operations
TypeScript descriptions of Stacks 2.0 blockchain API entities
The Stacks git utilities & conventions.
Authentication for Stacks apps.
A library for generating Stacks blockchain wallets
Stacks Runner - A Web3 endless runner game on Stacks blockchain. Earn STX and NFTs by playing!
React hooks and providers for integrating PULSE into AppKit, wagmi, and Stacks apps.
Provides abstractions around deploying and destroying stacks using aws-cdk. Consumers of this package should be able to deploy CloudFormation stacks without knowing that it is using CDK at all.
Split Serverless deployments in to nested CloudFormation stacks
TypeScript SDK for interacting with the StacksPix pixel board smart contract on Stacks blockchain
Helper utilities built on top of stacks-pix-sdk for common dApp integration patterns.
TypeScript SDK for interacting with the Clicker smart contract on Stacks blockchain
Helper utilities built on top of clicker-stacks-sdk for common dApp integration patterns.
**Welcome to the new Stacks Connect! ✨** Read the [`@stacks/connect` docs](./packages/connect) for more information.
Encryption utilities for Stacks
base class for Heroku CLI commands
Stacks blockchain address validation and formatting utilities
Stack Overflow’s CSS and Design Pattern Library. Stacks is an atomic CSS library with classes and components for rapidly building Stack Overflow.
🗿 Generate both SHA256 & SHA512 checksums into the checksums directory, and git commit them. gem install stone_checksums Then, use the rake task or the script: rake build:generate_checksums gem_checksums Control options with ENV variables! Fund overlooked open source projects - bottom of stack, dev/test dependencies: floss-funding.dev
DevContext (aka `dx`) is a developer context manager that unifies directory-level context switching, branch awareness, multi-repo awareness, and Git-aware introspection. It helps you manage multiple active projects with an active stack.
Envsafe is a standalone CLI utility for managing your .env files without project integration. Quickly back up your current environment, restore from any saved version, and compare your .env file against .env.example to catch missing or extra variables. Think of it as git stash for your .env. Core features: - Backup and restore .env files with optional tags - Pop the latest backup off the stack - Checkout any saved .env version or return to main - Validate .env vs .env.example - CLI-native — no Gemfile or code integration required Envsafe gives you safe, versioned control of your app’s environment variables — without the overhead.
# FaradayError [](https://badge.fury.io/rb/faraday_error) A [Faraday](https://github.com/lostisland/faraday) middleware for adding request parameters to your exception tracker. ### Supports - [Honeybadger](https://www.honeybadger.io/) - [NewRelic](http://newrelic.com/) - Your favorite thing, as soon as you make a pull request! ## Installation Add this line to your application's Gemfile: ```ruby gem 'faraday_error' ``` And then execute: $ bundle Or install it yourself as: $ gem install faraday_error ## Usage Configure your Faraday connection to use this middleware. You can optionally specify a name; defaults to `faraday`. It is expected that you also use `Faraday::Response::RaiseError` somewhere in your stack. ```ruby connection = Faraday.new(url: 'http://localhost:4567') do |faraday| faraday.use FaradayError::Middleware, name: "example_request" faraday.use Faraday::Response::RaiseError faraday.adapter Faraday.default_adapter end ``` And that's it. Make a request as you normally would. ```ruby connection.post do |req| req.url '/503' req.headers['Content-Type'] = 'application/json' req.body = JSON.generate(abc: "xyz") end ``` If any request fails, Honeybadger's "context" for this error will include your request parameters. If sending JSON or `application/x-www-form-urlencoded`, these will be included in parsed form. ```json { "example_request": { "method": "post", "url": "http://localhost:4567/503", "request_headers": { "User-Agent": "Faraday v0.9.2", "Content-Type": "application/json" }, "body_length": 13, "body": { "abc": "xyz" } } } ``` ## Development After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org). The included [RestReflector](../master/spec/rest_reflector.rb) Sinatra app is suitable for making requests that are guaranteed to fail in particlar ways. ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/jelder/faraday_error. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct. ## License The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
No description provided.
No description provided.