Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

side_boom

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

side_boom

  • 0.1.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

SideBoom

Creating and maintaining your projects CI/CD specifications with a programming language instead of a markup language.

Installation

Add this line to your application's Gemfile:

gem 'side_boom'

And then execute:

$ bundle exec sideboom

Usage

Examples are found in the Examples directory, and as new features become available these will be expanded. But just to show:

# Save this to .sideboom
# Generate output with `sideboom`
SideBoom::Pipeline.define('.gitlab-ci.yml') do
  RUBY_VERSIONS = %w[2.3 2.4 2.5 rc]

  before_script ['bundle -j 4']
  script ['bundle exec rspec']

  stage 'test' do
    RUBY_VERSIONS.each do |version|
      job "rspec ruby #{version}" do
        image "ruby:#{version}"

        allow_failure! if version == 'rc'
      end
    end
  end
end
# Generated by SideBoom
---
stages:
- test
rspec ruby 2.3:
  image: ruby:2.3
  stage: test
rspec ruby 2.4:
  image: ruby:2.4
  stage: test
rspec ruby 2.5:
  image: ruby:2.5
  stage: test
rspec ruby rc:
  image: ruby:rc
  allow_failure: true
  stage: test

TODO

  • Better documentation, now is just an example
  • Support for caching
  • Support for artifacts
  • Support advanced features, like services and dependencies

FAQs

Package last updated on 23 Oct 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc