Automating Ruby Gem Releases with GitHub Actions

This page summarizes the projects mentioned and recommended in the original post on dev.to

SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
  • release-please-action

    automated releases based on conventional commits

  • Release Please Action is a GitHub action created by Google to automate releases with Conventional Commit Messages. As you merge PR's into your main branch, the action will create/update a new release branch that automatically adds your commits to a changelog and bumps the version according to your commits. When you're ready to release your changes, merging the PR will cause a new GitHub release to be created and released. We can even automate publishing to package registries like RubyGems!

  • release-please-demo

  • # frozen_string_literal: true require_relative "lib/release/please/demo/version" Gem::Specification.new do |spec| spec.name = "release-please-demo" spec.version = Release::Please::Demo::VERSION spec.authors = ["Andrew Mason"] spec.email = ["[email protected]"] spec.summary = "Demo of release-please." spec.description = "A demo gem showing how to use release-please to automatically version gems." spec.homepage = "https://github.com/andrewmcodes/release-please-demo" spec.license = "MIT" spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0") spec.metadata = { "bug_tracker_uri" => "#{spec.homepage}/issues", "changelog_uri" => "#{spec.homepage}/blob/main/CHANGELOG.md", "documentation_uri" => spec.homepage.to_s, "homepage_uri" => spec.homepage.to_s, "source_code_uri" => spec.homepage.to_s } spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) } end spec.bindir = "exe" spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] end

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Figma's Journey to TypeScript

    3 projects | news.ycombinator.com | 4 May 2024
  • How to Use JSON Path

    9 projects | news.ycombinator.com | 3 May 2024
  • Unlocking Efficiency: The Significance of Technical Documentation

    1 project | dev.to | 4 May 2024
  • Implementing 3D Graphics in React

    6 projects | dev.to | 3 May 2024
  • You can email discord to opt-out of an agreement to arbitrate

    1 project | news.ycombinator.com | 3 May 2024