Skip to content

Commit

Permalink
v0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavier-IV committed Sep 8, 2023
1 parent c593ad7 commit 5fef2fd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion lib/windclutter/cli/core.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# frozen_string_literal: true

require 'dry/cli'
require 'rubygems'
require 'bundler/setup'
require 'windclutter/util/file_handler'
require 'windclutter/cli/commands/project'
require 'windclutter/cli/commands/generate'
Expand All @@ -17,7 +19,9 @@ class Version < Dry::CLI::Command
desc 'Print version'

def call(*)
puts '0.0.1'
gemspec = Gem::Specification.load('windclutter.gemspec')

puts gemspec.version.to_s
end
end

Expand Down
2 changes: 1 addition & 1 deletion windclutter.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |s|
s.name = 'windclutter'
s.version = '0.0.8'
s.version = '0.0.9'
s.summary = 'Quickly develop with TailwindCSS without worries.'
s.description = 'Your buddy to skyrocket your development with TailwindCSS.'
s.authors = ['Zafranudin Zafrin']
Expand Down

0 comments on commit 5fef2fd

Please sign in to comment.