Skip to content

Commit e22c8ce

Browse files
committed
doc: update CHANGELOG.md and CONTRIBUTING.md
[skip ci]
1 parent 6c5ad22 commit e22c8ce

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## next / unreleased
22

33
* Update to [Tailwind CSS v3.4.1](https://github.com/tailwindlabs/tailwindcss/releases/tag/v3.4.1) from v3.4.0 by @flavorjones
4+
* Fix `password` form field styling in generated scaffold forms. (#304, #307) @flavorjones
45

56

67
## v2.2.0 / 2023-01-04

CONTRIBUTING.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22

33
This doc is a brief introduction on modifying and maintaining this gem.
44

5+
6+
## Testing this gem
7+
8+
### Running the test suite
9+
10+
The unit tests are run with `bundle exec rake test`
11+
12+
There is an additional integration test which runs in CI, `test/integration/user_journey_test.sh` which you may also want to run.
13+
14+
15+
### Testing in a Rails app
16+
17+
If you want to test modifications to this gem, you must run `rake download` once to download the upstream `tailwindcss` executables.
18+
19+
Then you can point your Rails application's `Gemfile` at the local version of the gem as you normally would:
20+
21+
``` ruby
22+
gem "tailwindcss-rails", path: "/path/to/tailwindcss-rails"
23+
```
24+
25+
526
## Updating to the latest upstream tailwindcss version
627

728
Update `lib/tailwindcss/upstream.rb` with the upstream version.

0 commit comments

Comments
 (0)