├── .dockerignore ├── .document ├── .gitignore ├── .rspec ├── .travis.yml ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── VERSION ├── benchmark ├── addons.yml ├── config.yml ├── default_last_keychain_id └── server_secret ├── bin ├── straight-console ├── straight-server └── straight-server-benchmark ├── db ├── migrations │ ├── 001_create_orders.rb │ ├── 002_create_gateways.rb │ ├── 003_add_payment_id_to_orders.rb │ ├── 004_add_description_to_orders.rb │ ├── 005_add_orders_expiration_period_to_gateways.rb │ ├── 006_add_check_order_status_in_db_first_to_gateways.rb │ ├── 007_add_active_switcher_to_gateways.rb │ ├── 008_add_order_counters_to_gateways.rb │ ├── 009_add_hashed_id_to_gateways.rb │ ├── 010_add_address_reusability_orders.rb │ ├── 011_add_callback_data_to_orders.rb │ ├── 012_add_address_provider.rb │ ├── 013_add_address_derivation_scheme.rb │ ├── 014_pubkey_null_address_provider_not_null.rb │ ├── 015_add_amount_paid_to_orders.rb │ ├── 016_add_new_params_to_orders.rb │ ├── 017_add_test_mode_to_gateways.rb │ ├── 018_add_test_keychain_id_to_gateways.rb │ ├── 019_add_test_pubkey_to_gateways.rb │ ├── 020_add_test_mode_to_orders.rb │ ├── 021_add_fields_for_after_payment_redirect.rb │ ├── 022_add_merchant_url.rb │ ├── 023_change_url_fields_type.rb │ ├── 024_add_block_height_created_at_to_orders.rb │ ├── 025_create_transactions.rb │ ├── 026_add_allow_links_to_gateways.rb │ ├── 027_add_back_url_to_gateways.rb │ ├── 028_add_custom_css_url_to_gateways.rb │ ├── 029_delete_gateway_name_uniqueness_index.rb │ ├── 030_add_exchange_rate_and_currency_to_orders.rb │ ├── 031_add_amount_with_currency_to_orders.rb │ ├── 032_remove_exchange_rate_and_currency_from_orders.rb │ └── 033_add_donation_mode_to_gateways.rb └── schema.rb ├── examples └── client │ ├── client.dart │ ├── client.html │ └── client.js ├── lib ├── straight-server.rb └── straight-server │ ├── bip70 │ ├── payment_request.rb │ ├── paymentrequest.pb.rb │ └── paymentrequest.proto │ ├── config.rb │ ├── errors.rb │ ├── gateway.rb │ ├── initializer.rb │ ├── logger.rb │ ├── order.rb │ ├── orders_controller.rb │ ├── random_string.rb │ ├── server.rb │ ├── signature_validator.rb │ ├── thread.rb │ ├── throttler.rb │ ├── transaction.rb │ ├── utils │ └── hash_string_to_sym_keys.rb │ └── websocket_insight_client.rb ├── spec ├── .straight │ ├── ca.crt │ ├── config.yml │ ├── private.key │ └── server_secret ├── factories.rb ├── fixtures │ ├── addons.yml │ └── test_addon.rb ├── lib │ ├── bip70 │ │ └── payment_request_spec.rb │ ├── gateway_spec.rb │ ├── initializer_spec.rb │ ├── order_spec.rb │ ├── orders_controller_spec.rb │ ├── signature_validator_spec.rb │ ├── thread_spec.rb │ ├── throttle_spec.rb │ ├── utils │ │ └── hash_string_to_sym_keys.rb │ └── websocket_insight_client_spec.rb ├── spec_helper.rb └── support │ ├── custom_matchers.rb │ └── logger_context.rb ├── straight-server.gemspec └── templates ├── addons.yml └── config.yml /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/.dockerignore -------------------------------------------------------------------------------- /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 -------------------------------------------------------------------------------- /benchmark/addons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/benchmark/addons.yml -------------------------------------------------------------------------------- /benchmark/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/benchmark/config.yml -------------------------------------------------------------------------------- /benchmark/default_last_keychain_id: -------------------------------------------------------------------------------- 1 | 1520 -------------------------------------------------------------------------------- /benchmark/server_secret: -------------------------------------------------------------------------------- 1 | fyjoq0s7c07l7iwk 2 | -------------------------------------------------------------------------------- /bin/straight-console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/bin/straight-console -------------------------------------------------------------------------------- /bin/straight-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/bin/straight-server -------------------------------------------------------------------------------- /bin/straight-server-benchmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/bin/straight-server-benchmark -------------------------------------------------------------------------------- /db/migrations/001_create_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/001_create_orders.rb -------------------------------------------------------------------------------- /db/migrations/002_create_gateways.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/002_create_gateways.rb -------------------------------------------------------------------------------- /db/migrations/003_add_payment_id_to_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/003_add_payment_id_to_orders.rb -------------------------------------------------------------------------------- /db/migrations/004_add_description_to_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/004_add_description_to_orders.rb -------------------------------------------------------------------------------- /db/migrations/005_add_orders_expiration_period_to_gateways.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/005_add_orders_expiration_period_to_gateways.rb -------------------------------------------------------------------------------- /db/migrations/006_add_check_order_status_in_db_first_to_gateways.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/006_add_check_order_status_in_db_first_to_gateways.rb -------------------------------------------------------------------------------- /db/migrations/007_add_active_switcher_to_gateways.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/007_add_active_switcher_to_gateways.rb -------------------------------------------------------------------------------- /db/migrations/008_add_order_counters_to_gateways.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/008_add_order_counters_to_gateways.rb -------------------------------------------------------------------------------- /db/migrations/009_add_hashed_id_to_gateways.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/009_add_hashed_id_to_gateways.rb -------------------------------------------------------------------------------- /db/migrations/010_add_address_reusability_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/010_add_address_reusability_orders.rb -------------------------------------------------------------------------------- /db/migrations/011_add_callback_data_to_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/011_add_callback_data_to_orders.rb -------------------------------------------------------------------------------- /db/migrations/012_add_address_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/012_add_address_provider.rb -------------------------------------------------------------------------------- /db/migrations/013_add_address_derivation_scheme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/013_add_address_derivation_scheme.rb -------------------------------------------------------------------------------- /db/migrations/014_pubkey_null_address_provider_not_null.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/014_pubkey_null_address_provider_not_null.rb -------------------------------------------------------------------------------- /db/migrations/015_add_amount_paid_to_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/015_add_amount_paid_to_orders.rb -------------------------------------------------------------------------------- /db/migrations/016_add_new_params_to_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/016_add_new_params_to_orders.rb -------------------------------------------------------------------------------- /db/migrations/017_add_test_mode_to_gateways.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/017_add_test_mode_to_gateways.rb -------------------------------------------------------------------------------- /db/migrations/018_add_test_keychain_id_to_gateways.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/018_add_test_keychain_id_to_gateways.rb -------------------------------------------------------------------------------- /db/migrations/019_add_test_pubkey_to_gateways.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/019_add_test_pubkey_to_gateways.rb -------------------------------------------------------------------------------- /db/migrations/020_add_test_mode_to_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/020_add_test_mode_to_orders.rb -------------------------------------------------------------------------------- /db/migrations/021_add_fields_for_after_payment_redirect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/021_add_fields_for_after_payment_redirect.rb -------------------------------------------------------------------------------- /db/migrations/022_add_merchant_url.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/022_add_merchant_url.rb -------------------------------------------------------------------------------- /db/migrations/023_change_url_fields_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/023_change_url_fields_type.rb -------------------------------------------------------------------------------- /db/migrations/024_add_block_height_created_at_to_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/024_add_block_height_created_at_to_orders.rb -------------------------------------------------------------------------------- /db/migrations/025_create_transactions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/025_create_transactions.rb -------------------------------------------------------------------------------- /db/migrations/026_add_allow_links_to_gateways.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/026_add_allow_links_to_gateways.rb -------------------------------------------------------------------------------- /db/migrations/027_add_back_url_to_gateways.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/027_add_back_url_to_gateways.rb -------------------------------------------------------------------------------- /db/migrations/028_add_custom_css_url_to_gateways.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/028_add_custom_css_url_to_gateways.rb -------------------------------------------------------------------------------- /db/migrations/029_delete_gateway_name_uniqueness_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/029_delete_gateway_name_uniqueness_index.rb -------------------------------------------------------------------------------- /db/migrations/030_add_exchange_rate_and_currency_to_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/030_add_exchange_rate_and_currency_to_orders.rb -------------------------------------------------------------------------------- /db/migrations/031_add_amount_with_currency_to_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/031_add_amount_with_currency_to_orders.rb -------------------------------------------------------------------------------- /db/migrations/032_remove_exchange_rate_and_currency_from_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/032_remove_exchange_rate_and_currency_from_orders.rb -------------------------------------------------------------------------------- /db/migrations/033_add_donation_mode_to_gateways.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/migrations/033_add_donation_mode_to_gateways.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/db/schema.rb -------------------------------------------------------------------------------- /examples/client/client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/examples/client/client.dart -------------------------------------------------------------------------------- /examples/client/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/examples/client/client.html -------------------------------------------------------------------------------- /examples/client/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/examples/client/client.js -------------------------------------------------------------------------------- /lib/straight-server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/lib/straight-server.rb -------------------------------------------------------------------------------- /lib/straight-server/bip70/payment_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/lib/straight-server/bip70/payment_request.rb -------------------------------------------------------------------------------- /lib/straight-server/bip70/paymentrequest.pb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/lib/straight-server/bip70/paymentrequest.pb.rb -------------------------------------------------------------------------------- /lib/straight-server/bip70/paymentrequest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/lib/straight-server/bip70/paymentrequest.proto -------------------------------------------------------------------------------- /lib/straight-server/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/lib/straight-server/config.rb -------------------------------------------------------------------------------- /lib/straight-server/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/lib/straight-server/errors.rb -------------------------------------------------------------------------------- /lib/straight-server/gateway.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/lib/straight-server/gateway.rb -------------------------------------------------------------------------------- /lib/straight-server/initializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/lib/straight-server/initializer.rb -------------------------------------------------------------------------------- /lib/straight-server/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/lib/straight-server/logger.rb -------------------------------------------------------------------------------- /lib/straight-server/order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/lib/straight-server/order.rb -------------------------------------------------------------------------------- /lib/straight-server/orders_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/lib/straight-server/orders_controller.rb -------------------------------------------------------------------------------- /lib/straight-server/random_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/lib/straight-server/random_string.rb -------------------------------------------------------------------------------- /lib/straight-server/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/lib/straight-server/server.rb -------------------------------------------------------------------------------- /lib/straight-server/signature_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/lib/straight-server/signature_validator.rb -------------------------------------------------------------------------------- /lib/straight-server/thread.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/lib/straight-server/thread.rb -------------------------------------------------------------------------------- /lib/straight-server/throttler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/lib/straight-server/throttler.rb -------------------------------------------------------------------------------- /lib/straight-server/transaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/lib/straight-server/transaction.rb -------------------------------------------------------------------------------- /lib/straight-server/utils/hash_string_to_sym_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/lib/straight-server/utils/hash_string_to_sym_keys.rb -------------------------------------------------------------------------------- /lib/straight-server/websocket_insight_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/lib/straight-server/websocket_insight_client.rb -------------------------------------------------------------------------------- /spec/.straight/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/spec/.straight/ca.crt -------------------------------------------------------------------------------- /spec/.straight/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/spec/.straight/config.yml -------------------------------------------------------------------------------- /spec/.straight/private.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/spec/.straight/private.key -------------------------------------------------------------------------------- /spec/.straight/server_secret: -------------------------------------------------------------------------------- 1 | global server secret 2 | -------------------------------------------------------------------------------- /spec/factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/spec/factories.rb -------------------------------------------------------------------------------- /spec/fixtures/addons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/spec/fixtures/addons.yml -------------------------------------------------------------------------------- /spec/fixtures/test_addon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/spec/fixtures/test_addon.rb -------------------------------------------------------------------------------- /spec/lib/bip70/payment_request_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/spec/lib/bip70/payment_request_spec.rb -------------------------------------------------------------------------------- /spec/lib/gateway_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/spec/lib/gateway_spec.rb -------------------------------------------------------------------------------- /spec/lib/initializer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/spec/lib/initializer_spec.rb -------------------------------------------------------------------------------- /spec/lib/order_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/spec/lib/order_spec.rb -------------------------------------------------------------------------------- /spec/lib/orders_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/spec/lib/orders_controller_spec.rb -------------------------------------------------------------------------------- /spec/lib/signature_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/spec/lib/signature_validator_spec.rb -------------------------------------------------------------------------------- /spec/lib/thread_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/spec/lib/thread_spec.rb -------------------------------------------------------------------------------- /spec/lib/throttle_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/spec/lib/throttle_spec.rb -------------------------------------------------------------------------------- /spec/lib/utils/hash_string_to_sym_keys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/spec/lib/utils/hash_string_to_sym_keys.rb -------------------------------------------------------------------------------- /spec/lib/websocket_insight_client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/spec/lib/websocket_insight_client_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/custom_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/spec/support/custom_matchers.rb -------------------------------------------------------------------------------- /spec/support/logger_context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/spec/support/logger_context.rb -------------------------------------------------------------------------------- /straight-server.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/straight-server.gemspec -------------------------------------------------------------------------------- /templates/addons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/templates/addons.yml -------------------------------------------------------------------------------- /templates/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MyceliumGear/straight-server/HEAD/templates/config.yml --------------------------------------------------------------------------------