super_test_engine 0.0.5 → 0.0.6

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: aaf21b7ed383b578f0325e22473fa638b3d5be249c2b454f84625cb0572dea6d
4
- data.tar.gz: 0a7527dc8cc6e34d0abce3f0b3535ddd0f873cc1a14ef27b17d42ea08a53ce7a
3
+ metadata.gz: 9c8180d8dd33f99eb0442bb67751b0722b11d453679df0852587ef0f74c5c9a7
4
+ data.tar.gz: d3656c32d72e55007163f578c6c3d9671b81c98e20505f76bfd69215ef1ab55d
5
5
  SHA512:
6
- metadata.gz: 6e05c900c52c59193deb7154a28706122d990d8cb7d340589890ebb7e6ed23f7398c5114917ead81d1f74373d24b4a1a76ca554d86c13051ee807c9483e6ca65
7
- data.tar.gz: c3dfb9240fbb45258a570d57989286015baa6ac0ea8237b74cb0e5235514cee1db4efaa40edf5b31fcfba8739e5ea5e50bda7437587830b76964ed25321e6c0d
6
+ metadata.gz: 63150cc18e312cd009bd9bb06f89512b621813fad701d16f33bb6bea3a8f6f6aa523c6e5656059cc45c428ad54e98427b9446ae672c840801040287db4d7708a
7
+ data.tar.gz: 8956150cb78092261446188ba9434a001aa51a2a3f5c1ba6bc29f97983e09cd820253b6511c522167bc6a7956d60632189dc852d92474a8265b938a8e41289e6
@@ -59,6 +59,13 @@ module SuperTestEngine
59
59
  end
60
60
  end
61
61
 
62
+ def delete_unnecessary_files
63
+ inside(dummy_path) do
64
+ remove_file("app/assets/javascripts/cable.js")
65
+ remove_file("app/channels/")
66
+ end
67
+ end
68
+
62
69
  def apply_required_changes
63
70
  template("db_seeds.rb.tt", File.join(dummy_path, "db/seeds.rb"))
64
71
 
@@ -1,3 +1,3 @@
1
1
  module SuperTestEngine
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: super_test_engine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zach Ahn
@@ -48,17 +48,10 @@ files:
48
48
  - MIT-LICENSE
49
49
  - README.md
50
50
  - Rakefile
51
- - app/assets/config/super_test_engine_manifest.js
52
- - app/assets/javascripts/super_test_engine/application.js
53
- - app/assets/stylesheets/super_test_engine/application.css
54
51
  - app/controllers/admin/members_controller.rb
55
52
  - app/controllers/admin_controller.rb
56
53
  - app/dashboards/member_dashboard.rb
57
- - app/helpers/super_test_engine/application_helper.rb
58
- - app/jobs/super_test_engine/application_job.rb
59
- - app/mailers/super_test_engine/application_mailer.rb
60
54
  - app/models/member.rb
61
- - app/views/layouts/super_test_engine/application.html.erb
62
55
  - config/routes.rb
63
56
  - db/migrate/20190216224956_create_members.rb
64
57
  - db/seeds.rb
@@ -1,2 +0,0 @@
1
- //= link_directory ../javascripts/super_test_engine .js
2
- //= link_directory ../stylesheets/super_test_engine .css
@@ -1,14 +0,0 @@
1
- // This is a manifest file that'll be compiled into application.js, which will include all the files
2
- // listed below.
3
- //
4
- // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
- // or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
6
- //
7
- // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
- // compiled file. JavaScript code in this file should be added after the last require_* statement.
9
- //
10
- // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
- // about supported directives.
12
- //
13
- //= require rails-ujs
14
- //= require_tree .
@@ -1,15 +0,0 @@
1
- /*
2
- * This is a manifest file that'll be compiled into application.css, which will include all the files
3
- * listed below.
4
- *
5
- * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
- * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
- *
8
- * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
- * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
- * files in this directory. Styles in this file should be added after the last require_* statement.
11
- * It is generally better to create a new file per style scope.
12
- *
13
- *= require_tree .
14
- *= require_self
15
- */
@@ -1,4 +0,0 @@
1
- module SuperTestEngine
2
- module ApplicationHelper
3
- end
4
- end
@@ -1,4 +0,0 @@
1
- module SuperTestEngine
2
- class ApplicationJob < ActiveJob::Base
3
- end
4
- end
@@ -1,6 +0,0 @@
1
- module SuperTestEngine
2
- class ApplicationMailer < ActionMailer::Base
3
- default from: 'from@example.com'
4
- layout 'mailer'
5
- end
6
- end
@@ -1,16 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>Super test engine</title>
5
- <%= csrf_meta_tags %>
6
- <%= csp_meta_tag %>
7
-
8
- <%= stylesheet_link_tag "super_test_engine/application", media: "all" %>
9
- <%= javascript_include_tag "super_test_engine/application" %>
10
- </head>
11
- <body>
12
-
13
- <%= yield %>
14
-
15
- </body>
16
- </html>