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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 04b9666a11768cceb8b8314aa83da2dc3cc5db4b
4
- data.tar.gz: 35c117faef3822dcda69b031f447f5c4ad0a994d
3
+ metadata.gz: 7969ca5b37200cc91d88e12c3631d21ac7516b76
4
+ data.tar.gz: 4937f01f270831dc8d5f19d148ee5a7ab9c40aaa
5
5
  SHA512:
6
- metadata.gz: 3ea4eeef022b1e2cbbb4777eeb0d799398d54c59478b123baf2ae2a4ed28ea67eb4a8057deafe952eaa3ce80a8837f2b030e2a601aab0b6cc8e0589e3fbe9e1e
7
- data.tar.gz: 706801aa62681501c746d05f6f05f0a41791ffde42ec7eb6cfd8cc0597abce9fe0e4b005aff7e573a3f9b2a451c20297e557a1d028528938cff48d2f0046f159
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,4 @@
1
+ module Testingg
2
+ class ApplicationController < ActionController::Base
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module Testingg
2
+ module ApplicationHelper
3
+ end
4
+ end
@@ -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>
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :testingg do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,5 @@
1
+ module Testingg
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace Testingg
4
+ end
5
+ end
@@ -1,3 +1,3 @@
1
1
  module Testingg
2
- VERSION = "2.0rc1"
2
+ VERSION = "2.0.2.rc3"
3
3
  end
data/lib/testingg.rb ADDED
@@ -0,0 +1,4 @@
1
+ require "testingg/engine"
2
+
3
+ module Testingg
4
+ end
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.0rc1
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: