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|
5
5
spec . version = Tailwindcss ::VERSION
6
6
spec . authors = [ "Dino Maric" , "David Heinemeier Hansson" ]
7
7
spec . email = [ "dinom@hey.com" ]
8
- spec . homepage = "https://github.com/rails /tailwindcss-rails"
8
+ spec . homepage = "https://github.com/WizardComputer /tailwindcss-rails-webpacker "
9
9
spec . summary = "Integrate Tailwind CSS with the Rails webpacker."
10
10
spec . license = "MIT"
11
11
You can’t perform that action at this time.
0 commit comments