flamerb 0.1.3 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1649d57c33dc5f16e5ef291b8667c5061ea524de38170c0949864f97ee9ec8d0
4
- data.tar.gz: a1d6e5cb6b97963bf9990120fa9f095cadc2ba73d3119de6540646b254721086
3
+ metadata.gz: 21cf2de29fdc8d873003895b2c56cf75f7812471ba481f297ca86fcd28a344a2
4
+ data.tar.gz: 909ef801c9df9d4668165824959595af2d3eebae808d90858756ea4655efa16c
5
5
  SHA512:
6
- metadata.gz: b35746c51415642ea98f89ddf4f1576f8933d1e65018fde8aff009d6dacfd1165546b6194a3de8ee84b2e893352334a45af322460c033ece5c45afac4ed0191f
7
- data.tar.gz: 80116c4c8b08cbfe6f85ef527de91ed9f3e8ea62421a752e791ea12e5fee1866df31b161c37170b59c36333c9534118e75415209efeb5fc43506e9ed7e0dbcba
6
+ metadata.gz: 5b9839c63e4f8ab236d46c777fe183fc738b607dd20fc9fc648eae4e592b7ba6405164b9e59d97c18545dce030a7e18cbc5423f850343a8a301a771e6c22e53c
7
+ data.tar.gz: db0ef98dc5a90c962d2dac400f89d2c3ad49289debb5d81384e4821871b64de4c87631696f526505a1c6f11e1e4a2c1d8f2595da20fc2ac7e296a8dcb239c677
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## v0.2.0 (2023-07-13)
2
+
3
+ ### Feat
4
+
5
+ - Add rubocop-rspec and solargraph-rails
6
+ - update codeowner file
7
+
1
8
  ## v0.1.3 (2023-07-12)
2
9
 
3
10
  ### Fix
data/README.md CHANGED
@@ -49,7 +49,7 @@ for dev dependencies
49
49
  Projects created with Flame come with [Standard](https://github.com/standardrb/standard)
50
50
 
51
51
  ## To Do
52
- - [ ] Add [rubocop-rspec](https://github.com/rubocop/rubocop-rspec)
52
+ - [x] Add [rubocop-rspec](https://github.com/rubocop/rubocop-rspec)
53
53
  - [ ] Add [strong_migrations](https://github.com/ankane/strong_migrations)
54
54
  - [ ] Add [bullet](https://github.com/flyerhzm/bullet)
55
55
  - [ ] Add [vite-eslint-plugin](https://github.com/gxmari007/vite-plugin-eslint)
@@ -27,8 +27,9 @@ module Flame
27
27
  invoke "flame:vite"
28
28
 
29
29
  generate("annotate:install")
30
+ template ".rubocop.yml", ".rubocop.yml"
31
+ template ".solargraph.yml", ".solargraph.yml"
30
32
  run("bundle exec standardrb --fix-unsafely")
31
- run("bundle exec haml-lint app/views -A -a")
32
33
  rails_command("db:migrate") if yes?("\nDo you want to run migrations? [y/n]")
33
34
  rails_command("db:seed") if yes?("\nDo you want to run seed? [y/n]")
34
35
  welcome_message
data/lib/flame/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Flame
2
- VERSION = "0.1.3"
2
+ VERSION = "0.2.0"
3
3
  RUBY_VERSION = "3.2.2"
4
4
  RAILS_VERSION = "6.1.7"
5
5
  end
@@ -21,7 +21,10 @@ group :development do
21
21
  gem "annotate"
22
22
  gem "listen"
23
23
  gem "spring"
24
- gem "standard"
24
+ gem "standard", "~> 1.30.1"
25
+ gem "rubocop-rspec", "~> 2.22", require: false
26
+ gem "rubocop-rails", "~> 2.20", require: false
27
+ gem "solargraph-rails", "~> 1.1", require: false
25
28
  gem "html2haml" # Remove this gem!
26
29
  gem "haml_lint", require: false
27
30
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flamerb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - n0tbot
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-12 00:00:00.000000000 Z
11
+ date: 2023-07-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails