the_rails_var_dump 0.0.1 → 0.0.2

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.
@@ -0,0 +1,11 @@
1
+
2
+ require 'stringio'
3
+ require 'test/unit'
4
+ require 'rubygems'
5
+ require 'drb/drb'
6
+ require File.dirname(__FILE__) + '/../lib/the_rails_var_dump'
7
+
8
+ ##ここ以下にlibにおいたソースを追記する
9
+
10
+ require 'the_rails_var_dump'
11
+
@@ -5,4 +5,13 @@ module TheRailsVarDump
5
5
  def self.run()
6
6
  puts"Hello World"
7
7
  end
8
+
9
+ def self.play()
10
+ puts "Play"
11
+ end
12
+
13
+ @@str = "test"
14
+ def self.var_dump(@@str)
15
+ puts @@str
16
+ end
8
17
  end
@@ -1,3 +1,3 @@
1
1
  module TheRailsVarDump
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: the_rails_var_dump
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -73,6 +73,8 @@ files:
73
73
  - README.md
74
74
  - Rakefile
75
75
  - bin/the_rails_var_dump
76
+ - lib/.the_rails_var_dump.rb.swp
77
+ - lib/test_helper.rb
76
78
  - lib/the_rails_var_dump.rb
77
79
  - lib/the_rails_var_dump/version.rb
78
80
  - the_rails_var_dump.gemspec