testingg 1.1.1 → 2.0rc1

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
  SHA1:
3
- metadata.gz: 8e1c3c31ac6cf347beae008e43ceae8431f60369
4
- data.tar.gz: 5e814cd1f105b55b92f24bfbb68a81d547a0b166
3
+ metadata.gz: 04b9666a11768cceb8b8314aa83da2dc3cc5db4b
4
+ data.tar.gz: 35c117faef3822dcda69b031f447f5c4ad0a994d
5
5
  SHA512:
6
- metadata.gz: 6e7fdc809279e901677036defd4adbca3f8d79cbf09a812896cd42c4d3862aeb55f9dcb76ff43260f8382f3fd9b33b61c4d7640ac74845f4dae96879737e156c
7
- data.tar.gz: db92499470dd958a4e9ccafc8985efe4da932a0a83a66070cd24ad5637add53109dbf76f5ebd83a67246f7ee76d55acc71303548747484d1a03779e6a4698420
6
+ metadata.gz: 3ea4eeef022b1e2cbbb4777eeb0d799398d54c59478b123baf2ae2a4ed28ea67eb4a8057deafe952eaa3ce80a8837f2b030e2a601aab0b6cc8e0589e3fbe9e1e
7
+ data.tar.gz: 706801aa62681501c746d05f6f05f0a41791ffde42ec7eb6cfd8cc0597abce9fe0e4b005aff7e573a3f9b2a451c20297e557a1d028528938cff48d2f0046f159
@@ -1,3 +1,3 @@
1
1
  module Testingg
2
- VERSION = "1.1.1"
2
+ VERSION = "2.0rc1"
3
3
  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: 1.1.1
4
+ version: 2.0rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Antonio C Nalesso Moreira
@@ -17,14 +17,6 @@ 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
28
20
  - lib/testingg/version.rb
29
21
  homepage: https://github.com/nbit001/testingg
30
22
  licenses:
@@ -41,9 +33,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
41
33
  version: '0'
42
34
  required_rubygems_version: !ruby/object:Gem::Requirement
43
35
  requirements:
44
- - - '>='
36
+ - - '>'
45
37
  - !ruby/object:Gem::Version
46
- version: '0'
38
+ version: 1.3.1
47
39
  requirements: []
48
40
  rubyforge_project:
49
41
  rubygems_version: 2.0.2
@@ -1,15 +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 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 .
@@ -1,13 +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 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
- */
@@ -1,4 +0,0 @@
1
- module Testingg
2
- class ApplicationController < ActionController::Base
3
- end
4
- end
@@ -1,4 +0,0 @@
1
- module Testingg
2
- module ApplicationHelper
3
- end
4
- end
@@ -1,14 +0,0 @@
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>
@@ -1,4 +0,0 @@
1
- # desc "Explaining what the task does"
2
- # task :testingg do
3
- # # Task goes here
4
- # end
@@ -1,5 +0,0 @@
1
- module Testingg
2
- class Engine < ::Rails::Engine
3
- isolate_namespace Testingg
4
- end
5
- end
data/lib/testingg.rb DELETED
@@ -1,4 +0,0 @@
1
- require "testingg/engine"
2
-
3
- module Testingg
4
- end