flamerb 0.2.0 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 21cf2de29fdc8d873003895b2c56cf75f7812471ba481f297ca86fcd28a344a2
4
- data.tar.gz: 909ef801c9df9d4668165824959595af2d3eebae808d90858756ea4655efa16c
3
+ metadata.gz: 91e49f008f22e5efd4cd3c78ddcaa376be692b571f23a2ccb8c486f2c02b4737
4
+ data.tar.gz: bbe91b7519da2bcf40f46b1023e3ded605da12114880de34088267c79fe56c92
5
5
  SHA512:
6
- metadata.gz: 5b9839c63e4f8ab236d46c777fe183fc738b607dd20fc9fc648eae4e592b7ba6405164b9e59d97c18545dce030a7e18cbc5423f850343a8a301a771e6c22e53c
7
- data.tar.gz: db0ef98dc5a90c962d2dac400f89d2c3ad49289debb5d81384e4821871b64de4c87631696f526505a1c6f11e1e4a2c1d8f2595da20fc2ac7e296a8dcb239c677
6
+ metadata.gz: a569f4cc48b01331b767efab6facc4b9b460df228e28bc34f4bf35799792291ee9b88cb94c93281cb978ba6486264d16579bc3573eceb546de83328362790ae4
7
+ data.tar.gz: f32ff193fcea6e5217371f8c82a79d98579bca9260758408ab734d763f403751badc15daecd44ed8d3f6b46bbca773957f6c53474ebc4399b00278d5a094a29f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ ## v0.2.3 (2023-07-14)
2
+
3
+ ### Fix
4
+
5
+ - problems with solargraph
6
+
7
+ ## v0.2.2 (2023-07-14)
8
+
9
+ ### Fix
10
+
11
+ - problems with rubocop
12
+
13
+ ## v0.2.1 (2023-07-13)
14
+
15
+ ### Fix
16
+
17
+ - conflict with template location
18
+
1
19
  ## v0.2.0 (2023-07-13)
2
20
 
3
21
  ### Feat
data/bin/flamerb CHANGED
@@ -21,6 +21,6 @@ ARGV << "--skip-jbuilder"
21
21
  ARGV << "--database=postgresql"
22
22
  ARGV << "-T"
23
23
 
24
- templates_path = File.expand_path(File.join("..", "templates"), File.dirname(__FILE__))
24
+ templates_path = File.expand_path('../../templates', __FILE__)
25
25
  Flame::Generators::App.source_paths << Rails::Generators::AppGenerator.source_root << templates_path
26
26
  Flame::Generators::App.start
@@ -27,8 +27,6 @@ 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"
32
30
  run("bundle exec standardrb --fix-unsafely")
33
31
  rails_command("db:migrate") if yes?("\nDo you want to run migrations? [y/n]")
34
32
  rails_command("db:seed") if yes?("\nDo you want to run seed? [y/n]")
@@ -18,6 +18,9 @@ module Flame
18
18
  template("spec/support/shoulda_matchers.rb")
19
19
  template("spec/support/factory_bot.rb")
20
20
  template("spec/support/database_cleaner.rb")
21
+ #TODO: Move this
22
+ template(".rubocop.yml")
23
+ template(".solargraph.yml" )
21
24
  end
22
25
  end
23
26
  end
data/lib/flame/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Flame
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.3"
3
3
  RUBY_VERSION = "3.2.2"
4
4
  RAILS_VERSION = "6.1.7"
5
5
  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.2.0
4
+ version: 0.2.3
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-13 00:00:00.000000000 Z
11
+ date: 2023-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails