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 +4 -4
- data/lib/generators/super_test_engine/dummy/dummy_generator.rb +7 -0
- data/lib/super_test_engine/version.rb +1 -1
- metadata +1 -8
- data/app/assets/config/super_test_engine_manifest.js +0 -2
- data/app/assets/javascripts/super_test_engine/application.js +0 -14
- data/app/assets/stylesheets/super_test_engine/application.css +0 -15
- data/app/helpers/super_test_engine/application_helper.rb +0 -4
- data/app/jobs/super_test_engine/application_job.rb +0 -4
- data/app/mailers/super_test_engine/application_mailer.rb +0 -6
- data/app/views/layouts/super_test_engine/application.html.erb +0 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c8180d8dd33f99eb0442bb67751b0722b11d453679df0852587ef0f74c5c9a7
|
4
|
+
data.tar.gz: d3656c32d72e55007163f578c6c3d9671b81c98e20505f76bfd69215ef1ab55d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
|
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.
|
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,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,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>
|