testingg 2.0rc1 → 2.0.2.rc3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/testingg/application.js +15 -0
- data/app/assets/stylesheets/testingg/application.css +13 -0
- data/app/controllers/testingg/application_controller.rb +4 -0
- data/app/helpers/testingg/application_helper.rb +4 -0
- data/app/views/layouts/testingg/application.html.erb +14 -0
- data/lib/tasks/testingg_tasks.rake +4 -0
- data/lib/testingg/engine.rb +5 -0
- data/lib/testingg/version.rb +1 -1
- data/lib/testingg.rb +4 -0
- metadata +9 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7969ca5b37200cc91d88e12c3631d21ac7516b76
|
4
|
+
data.tar.gz: 4937f01f270831dc8d5f19d148ee5a7ab9c40aaa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2b1db9fc451ef808853d024366aaba4c22b1da17d95be541b7b7dfd8296f1072bf90b0a9404001e35b75b3c9cc28ccbd0e228a674d561251666c8e588b6bc9a2
|
7
|
+
data.tar.gz: 6d0a1e77886b92fb62c9a989188e07b0527b40cad101689a729fe1fdb740767ebfda716b03f0642f446084aff85b44678a6df570559950fc4e6f172bbc0c5859
|
@@ -0,0 +1,15 @@
|
|
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 vendor/assets/javascripts of plugins, if any, 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
|
+
// the compiled file.
|
9
|
+
//
|
10
|
+
// WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
|
11
|
+
// GO AFTER THE REQUIRES BELOW.
|
12
|
+
//
|
13
|
+
//= require jquery
|
14
|
+
//= require jquery_ujs
|
15
|
+
//= require_tree .
|
@@ -0,0 +1,13 @@
|
|
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 vendor/assets/stylesheets of plugins, if any, 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 top of the
|
9
|
+
* compiled file, but it's generally better to create a new file per style scope.
|
10
|
+
*
|
11
|
+
*= require_self
|
12
|
+
*= require_tree .
|
13
|
+
*/
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Testingg</title>
|
5
|
+
<%= stylesheet_link_tag "testingg/application", :media => "all" %>
|
6
|
+
<%= javascript_include_tag "testingg/application" %>
|
7
|
+
<%= csrf_meta_tags %>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
|
11
|
+
<%= yield %>
|
12
|
+
|
13
|
+
</body>
|
14
|
+
</html>
|
data/lib/testingg/version.rb
CHANGED
data/lib/testingg.rb
ADDED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: testingg
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.0.2.rc3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Antonio C Nalesso Moreira
|
@@ -17,6 +17,14 @@ executables: []
|
|
17
17
|
extensions: []
|
18
18
|
extra_rdoc_files: []
|
19
19
|
files:
|
20
|
+
- app/assets/javascripts/testingg/application.js
|
21
|
+
- app/assets/stylesheets/testingg/application.css
|
22
|
+
- app/controllers/testingg/application_controller.rb
|
23
|
+
- app/helpers/testingg/application_helper.rb
|
24
|
+
- app/views/layouts/testingg/application.html.erb
|
25
|
+
- lib/tasks/testingg_tasks.rake
|
26
|
+
- lib/testingg.rb
|
27
|
+
- lib/testingg/engine.rb
|
20
28
|
- lib/testingg/version.rb
|
21
29
|
homepage: https://github.com/nbit001/testingg
|
22
30
|
licenses:
|