Skip to content

Commit

Permalink
Fix release process.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesiarmes committed Sep 6, 2024
1 parent 5383dfa commit 626c438
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ConfigSL [![Gem Version](https://badge.fury.io/rb/configsl.svg)](https://badge.fury.io/rb/configsl) [![Coverage Status][badge-coverage]][coverage]
# ConfigSL [![Gem Version](https://badge.fury.io/rb/configsl.svg)](https://badge.fury.io/rb/configsl) [![Coverage Status][badge-coverage]][coverage] [![Code Checks](https://github.com/jamesiarmes/configsl/actions/workflows/checks.yaml/badge.svg?branch=main)](https://github.com/jamesiarmes/configsl/actions/workflows/checks.yaml)

ConfigSL is a simple Domain-Specific Language (DSL) module for configuration.
It is designed to provide a declarative way to define configuration, with as few
Expand Down
8 changes: 8 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ require 'rubocop/rake_task'

task default: %i[spec rubocop]

module Bundler
class GemHelper
def version_tag
"#{@tag_prefix}#{version}"
end
end
end

Bundler::GemHelper.install_tasks

RuboCop::RakeTask.new(:rubocop) do |task|
Expand Down
2 changes: 1 addition & 1 deletion configsql.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |s|
s.name = 'configsl'
s.version = '1.0.1'
s.version = '99.99.99.pre.1'
s.licenses = ['MIT']
s.summary = 'A simple DSL for declarative configuration in ruby.'
s.description = 'A simple, modular, extensible DSL for configuration.'
Expand Down

0 comments on commit 626c438

Please sign in to comment.