gtest 0.4.0 → 0.5.0

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: 3782b1c56977ec9aca4aaddbf39c799ff888e893
4
- data.tar.gz: c0444a0c7f51fa1fa259d59667c88304b4a53786
3
+ metadata.gz: d7931f87c2780d66a6f667e18a6bc606d965783a
4
+ data.tar.gz: 622a05770dfe4686f38948177dc499b3f1d62c4e
5
5
  SHA512:
6
- metadata.gz: 6e77458b71efa2e906af16a2fc1a4798ad41e36ab171e296fca89651b86a5a6a7a9dac25c09de7ea8f0f89450b57409e4aada91964ff84b4168929a235bbf417
7
- data.tar.gz: 1304f2d960575d4456ec1fdeb9017f6c385fc1b151c705398c109107a2a096878eee330a9fc6ac330f9ee35c8773dff75242bc5fd0e6600e3718f1c8d78b901a
6
+ metadata.gz: fa622687e5ed831b57172b373c91eb036a3be4c8df0c89311d0ab831c0b188189b5d2f6622739d3ee061181851461fa44c37dc21813181b6e90e3b8aa54cbf60
7
+ data.tar.gz: c9d6fd7e59b10d3a415f794054ad8bfa80ba0c55235b54c436c14a23512369744adc01f3b092e0ce5489d645a9dc4b2c36a040c8ab402cf1f9322aadb797e159
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ v0.5.0
2
+ - add CustomClass and CustomClass2
1
3
  v0.4.0
2
4
  - add new helper
3
5
  v0.3.0
@@ -1,6 +1,9 @@
1
1
  require "gtest/version"
2
+ require "gtest/custom_class"
3
+ require 'gtest/custom_class2'
2
4
  require "core/hash"
3
- require "helpers/gtest_helper.rb"
5
+ require "helpers/gtest_helper"
6
+
4
7
  ActionView::Base.send :include, GtestHelper
5
8
  module Gtest
6
9
  class Engine < ::Rails::Engine; end
@@ -0,0 +1,10 @@
1
+ module Gtest
2
+ class CustomClass
3
+ def add n1, n2
4
+ n1 + n2
5
+ end
6
+ def sub n1, n2
7
+ n1 - n2
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,8 @@
1
+ class CustomClass2
2
+ def add n1, n2
3
+ n1 + n2
4
+ end
5
+ def sub n1, n2
6
+ n1 - n2
7
+ end
8
+ end
@@ -1,3 +1,3 @@
1
1
  module Gtest
2
- VERSION = "0.4.0"
2
+ VERSION = "0.5.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gtest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - thiago feitosa
@@ -73,6 +73,8 @@ files:
73
73
  - gtest.gemspec
74
74
  - lib/core/hash.rb
75
75
  - lib/gtest.rb
76
+ - lib/gtest/custom_class.rb
77
+ - lib/gtest/custom_class2.rb
76
78
  - lib/gtest/version.rb
77
79
  - lib/helpers/gtest_helper.rb
78
80
  - vendor/assets/javascripts/gtest/gtest.coffee