File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ VERSION=$1
4+
5+ printf " module Tailwindcss\n VERSION = \" $VERSION \" \nend\n" > ./lib/tailwindcss/version.rb
6+ bundle
7+ git add Gemfile.lock lib/tailwindcss/version.rb
8+ git commit -m " Bump version for $VERSION "
9+ git push
10+ git tag v$VERSION
11+ git push --tags
12+ gem build tailwindcss-rails-webpacker.gemspec
13+ gem push " tailwindcss-rails-webpacker-$VERSION .gem"
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ Gem::Specification.new do |spec|
55 spec . version = Tailwindcss ::VERSION
66 spec . authors = [ "Dino Maric" , "David Heinemeier Hansson" ]
77 spec . email = [ "dinom@hey.com" ]
8- spec . homepage = "https://github.com/rails /tailwindcss-rails"
8+ spec . homepage = "https://github.com/WizardComputer /tailwindcss-rails-webpacker "
99 spec . summary = "Integrate Tailwind CSS with the Rails webpacker."
1010 spec . license = "MIT"
1111
You can’t perform that action at this time.
0 commit comments