deforest 1.0.1 → 1.0.2

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.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: deforest
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Akshay Takkar
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-22 00:00:00.000000000 Z
11
+ date: 2023-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -143,8 +143,11 @@ files:
143
143
  - lib/deforest.rb
144
144
  - lib/deforest/engine.rb
145
145
  - lib/deforest/version.rb
146
- - lib/tasks/deforest_initializer.rb
147
- - lib/tasks/deforest_tasks.rake
146
+ - lib/generators/deforest/USAGE
147
+ - lib/generators/deforest/deforest_generator.rb
148
+ - lib/generators/deforest/templates/classic_enabled_initializer.rb
149
+ - lib/generators/deforest/templates/migration.rb
150
+ - lib/generators/deforest/templates/zeitwerk_enabled_initializer.rb
148
151
  - test/controllers/deforest/logs_controller_test.rb
149
152
  - test/deforest_test.rb
150
153
  - test/dummy/README.rdoc
@@ -1,7 +0,0 @@
1
- desc "Copy initializer file to target application"
2
- file "deforest" do
3
- source_file = "#{Deforest::Engine.root}/lib/tasks/deforest_initializer.rb"
4
- dest_file = "#{Rails.root}/config/initializers/deforest.rb"
5
- FileUtils.copy_file source_file, dest_file
6
- puts "Created initializer config/initiliazer/deforest.rb"
7
- end