tengine_support 0.3.15 → 0.3.16
Sign up to get free protection for your applications and to get access to all the features.
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.16
|
@@ -40,7 +40,7 @@ describe "tengine/support/core_ext/array/deep_dup" do
|
|
40
40
|
before do
|
41
41
|
if Hash.instance_methods.include?(:deep_dup)
|
42
42
|
Hash.class_eval do
|
43
|
-
|
43
|
+
undef deep_dup
|
44
44
|
end
|
45
45
|
end
|
46
46
|
end
|
@@ -53,10 +53,17 @@ describe "tengine/support/core_ext/array/deep_dup" do
|
|
53
53
|
it { subject.object_id.should_not == original.object_id }
|
54
54
|
it { subject[1].object_id.should_not == original[1].object_id }
|
55
55
|
it { subject[1][1].object_id.should_not == original[1][1].object_id }
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
56
|
+
|
57
|
+
context "オブジェクトが変わらない" do
|
58
|
+
before do
|
59
|
+
pending "なぜかobject_idが変わってしまう。" if RUBY_VERSION == "1.8.7"
|
60
|
+
end
|
61
|
+
|
62
|
+
it { subject[1][2].object_id.should == original[1][2].object_id }
|
63
|
+
it { subject[1][2][:e].object_id.should == original[1][2][:e].object_id }
|
64
|
+
it { subject[1][2][:e][:f].object_id.should == original[1][2][:e][:f].object_id }
|
65
|
+
it { subject[1][2][:e][:i].object_id.should == original[1][2][:e][:i].object_id }
|
66
|
+
end
|
60
67
|
end
|
61
68
|
|
62
69
|
end
|
@@ -51,9 +51,16 @@ describe "tengine/support/core_ext/hash/deep_dup" do
|
|
51
51
|
it { subject.object_id.should_not == original.object_id }
|
52
52
|
it { subject[:a].object_id.should_not == original[:a].object_id }
|
53
53
|
it { subject[:a][:b].object_id.should_not == original[:a][:b].object_id }
|
54
|
-
|
55
|
-
|
56
|
-
|
54
|
+
|
55
|
+
context "オブジェクトが変わらない" do
|
56
|
+
before do
|
57
|
+
pending "なぜかobject_idが変わってしまう。" if RUBY_VERSION == "1.8.7"
|
58
|
+
end
|
59
|
+
|
60
|
+
it { subject[:a][:e].object_id.should == original[:a][:e].object_id }
|
61
|
+
it { subject[:a][:e][1].object_id.should == original[:a][:e][1].object_id }
|
62
|
+
it { subject[:a][:e][2].object_id.should == original[:a][:e][2].object_id }
|
63
|
+
end
|
57
64
|
end
|
58
65
|
|
59
66
|
end
|
data/tengine_support.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "tengine_support"
|
8
|
-
s.version = "0.3.
|
8
|
+
s.version = "0.3.16"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["saishu", "w-irie", "taigou", "totty", "hiroshinakao", "g-morita", "guemon", "aoetk", "hattori-at-nt", "t-yamada", "y-karashima", "akm"]
|
@@ -38,7 +38,10 @@ Gem::Specification.new do |s|
|
|
38
38
|
"lib/tengine/support/config/logger.rb",
|
39
39
|
"lib/tengine/support/config/mongoid.rb",
|
40
40
|
"lib/tengine/support/core_ext.rb",
|
41
|
+
"lib/tengine/support/core_ext/array.rb",
|
42
|
+
"lib/tengine/support/core_ext/array/deep_dup.rb",
|
41
43
|
"lib/tengine/support/core_ext/hash.rb",
|
44
|
+
"lib/tengine/support/core_ext/hash/deep_dup.rb",
|
42
45
|
"lib/tengine/support/core_ext/hash/keys.rb",
|
43
46
|
"lib/tengine/support/null_logger.rb",
|
44
47
|
"lib/tengine/support/yaml_with_erb.rb",
|
@@ -56,6 +59,8 @@ Gem::Specification.new do |s|
|
|
56
59
|
"spec/tengine_support/config_spec/load_spec_01.yml.erb",
|
57
60
|
"spec/tengine_support/config_spec/load_spec_02.yml.erb",
|
58
61
|
"spec/tengine_support/config_spec/parse_spec.rb",
|
62
|
+
"spec/tengine_support/core_ext/array/deep_dup_spec.rb",
|
63
|
+
"spec/tengine_support/core_ext/hash/deep_dup_spec.rb",
|
59
64
|
"spec/tengine_support/core_ext/hash/keys_spec.rb",
|
60
65
|
"spec/tengine_support/null_logger_spec.rb",
|
61
66
|
"spec/tengine_support/yaml_with_erb_spec.rb",
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tengine_support
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.16
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -24,7 +24,7 @@ date: 2011-11-21 00:00:00.000000000Z
|
|
24
24
|
dependencies:
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: activesupport
|
27
|
-
requirement: &
|
27
|
+
requirement: &2153889300 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: 3.0.0
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *2153889300
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: rspec
|
38
|
-
requirement: &
|
38
|
+
requirement: &2153888820 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ~>
|
@@ -43,10 +43,10 @@ dependencies:
|
|
43
43
|
version: 2.6.0
|
44
44
|
type: :development
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *2153888820
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: yard
|
49
|
-
requirement: &
|
49
|
+
requirement: &2153888280 !ruby/object:Gem::Requirement
|
50
50
|
none: false
|
51
51
|
requirements:
|
52
52
|
- - ~>
|
@@ -54,10 +54,10 @@ dependencies:
|
|
54
54
|
version: 0.7.2
|
55
55
|
type: :development
|
56
56
|
prerelease: false
|
57
|
-
version_requirements: *
|
57
|
+
version_requirements: *2153888280
|
58
58
|
- !ruby/object:Gem::Dependency
|
59
59
|
name: bundler
|
60
|
-
requirement: &
|
60
|
+
requirement: &2153887720 !ruby/object:Gem::Requirement
|
61
61
|
none: false
|
62
62
|
requirements:
|
63
63
|
- - ~>
|
@@ -65,10 +65,10 @@ dependencies:
|
|
65
65
|
version: 1.0.18
|
66
66
|
type: :development
|
67
67
|
prerelease: false
|
68
|
-
version_requirements: *
|
68
|
+
version_requirements: *2153887720
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: jeweler
|
71
|
-
requirement: &
|
71
|
+
requirement: &2153887200 !ruby/object:Gem::Requirement
|
72
72
|
none: false
|
73
73
|
requirements:
|
74
74
|
- - ~>
|
@@ -76,10 +76,10 @@ dependencies:
|
|
76
76
|
version: 1.6.4
|
77
77
|
type: :development
|
78
78
|
prerelease: false
|
79
|
-
version_requirements: *
|
79
|
+
version_requirements: *2153887200
|
80
80
|
- !ruby/object:Gem::Dependency
|
81
81
|
name: simplecov
|
82
|
-
requirement: &
|
82
|
+
requirement: &2153886660 !ruby/object:Gem::Requirement
|
83
83
|
none: false
|
84
84
|
requirements:
|
85
85
|
- - ~>
|
@@ -87,10 +87,10 @@ dependencies:
|
|
87
87
|
version: 0.5.3
|
88
88
|
type: :development
|
89
89
|
prerelease: false
|
90
|
-
version_requirements: *
|
90
|
+
version_requirements: *2153886660
|
91
91
|
- !ruby/object:Gem::Dependency
|
92
92
|
name: autotest
|
93
|
-
requirement: &
|
93
|
+
requirement: &2153886140 !ruby/object:Gem::Requirement
|
94
94
|
none: false
|
95
95
|
requirements:
|
96
96
|
- - ! '>='
|
@@ -98,10 +98,10 @@ dependencies:
|
|
98
98
|
version: '0'
|
99
99
|
type: :development
|
100
100
|
prerelease: false
|
101
|
-
version_requirements: *
|
101
|
+
version_requirements: *2153886140
|
102
102
|
- !ruby/object:Gem::Dependency
|
103
103
|
name: rdiscount
|
104
|
-
requirement: &
|
104
|
+
requirement: &2153885580 !ruby/object:Gem::Requirement
|
105
105
|
none: false
|
106
106
|
requirements:
|
107
107
|
- - ! '>='
|
@@ -109,7 +109,7 @@ dependencies:
|
|
109
109
|
version: '0'
|
110
110
|
type: :development
|
111
111
|
prerelease: false
|
112
|
-
version_requirements: *
|
112
|
+
version_requirements: *2153885580
|
113
113
|
description: tengine_support provides utility classes/modules which is not included
|
114
114
|
in active_support. It doesn't depend on other tengine gems.
|
115
115
|
email: tengine@nautilus-technologies.com
|
@@ -186,7 +186,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
186
186
|
version: '0'
|
187
187
|
segments:
|
188
188
|
- 0
|
189
|
-
hash:
|
189
|
+
hash: 4470894457933007028
|
190
190
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
191
191
|
none: false
|
192
192
|
requirements:
|