Sha256: 53aa1fce5b83b9975b723a52d8e30823d2c9dd3f2ae90e942dcba2460879ea57

Contents?: true

Size: 831 Bytes

Versions: 4

Compression:

Stored size: 831 Bytes

Contents

Consider starting the commit message with an applicable emoji:

* :lipstick: `:lipstick:` when improving the format/structure of the code
* :racehorse:`:racehorse:` when improving performance
* :memo:`:memo:` when writing docs
* :bug:`:bug:` when fixing a bug
* :fire:`:fire:` when removing code or files
* :green_heart:`:green_heart:` when fixing the CI build
* :white_check_mark:`:white_check_mark:` when adding tests
* :arrow_up: `:arrow_up:` when upgrading dependencies
* :arrow_down: `:arrow_down:` when downgrading dependencies

Favor single quotes when not concatenating, double quotes are prefered when
concatenating, escaping characters or using a single quote in the string:

Single Quotes:
`puts 'hello adminpanel'`
Double Quotes:
```ruby
h = 'hello'
a = 'adminpanel'
puts "#{h}, #{a}"
puts "\n hi"
puts "it's 6 am"
```

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
adminpanel-2.4.2 CONTRIBUTING.md
adminpanel-2.4.1 CONTRIBUTING.md
adminpanel-2.4.0 CONTRIBUTING.md
adminpanel-2.3.1 CONTRIBUTING.md