arbre2 2.1.0 → 2.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.travis.yml +3 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +40 -54
- data/arbre.gemspec +1 -1
- data/gemfiles/3.2.x.gemfile +3 -0
- data/gemfiles/4.0.x.gemfile +3 -0
- data/lib/arbre/version.rb +1 -1
- data/spec/rails_spec_helper.rb +2 -1
- metadata +8 -8
- data/.ruby-gemset +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 16f9018c606a0942060a2686db4afa15f967a9b7
|
4
|
+
data.tar.gz: 94f228418b55716964de0b3c26474c208da97c32
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 10600d97b0f6f2a9284a56f14ac879cf924556a363e8a378378c9cdc5c09eaf950fab1bd492fbbba66c7758f4a91d6cc5ce5c0f3ad7ca2a4b00d18aec14084c7
|
7
|
+
data.tar.gz: 0b6b82cc4256f35910a2a237db1720c77b14dc611d509b6e5d070d65a121a7a2a1ded3d6a6c7ab7d8d5f1b55bcd5bc660ee64ec3b1aa174d9435c9b7133bce6e
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,89 +1,75 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
arbre2 (2.
|
5
|
-
activesupport
|
4
|
+
arbre2 (2.2.0)
|
5
|
+
activesupport
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: http://rubygems.org/
|
9
9
|
specs:
|
10
|
-
actionpack (
|
11
|
-
|
12
|
-
|
13
|
-
builder (~> 3.0.0)
|
10
|
+
actionpack (4.0.3)
|
11
|
+
activesupport (= 4.0.3)
|
12
|
+
builder (~> 3.1.0)
|
14
13
|
erubis (~> 2.7.0)
|
15
|
-
|
16
|
-
rack (~>
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
activesupport (= 3.2.14)
|
22
|
-
builder (~> 3.0.0)
|
23
|
-
activesupport (3.2.14)
|
14
|
+
rack (~> 1.5.2)
|
15
|
+
rack-test (~> 0.6.2)
|
16
|
+
activemodel (4.0.3)
|
17
|
+
activesupport (= 4.0.3)
|
18
|
+
builder (~> 3.1.0)
|
19
|
+
activesupport (4.0.3)
|
24
20
|
i18n (~> 0.6, >= 0.6.4)
|
25
|
-
|
26
|
-
|
27
|
-
|
21
|
+
minitest (~> 4.2)
|
22
|
+
multi_json (~> 1.3)
|
23
|
+
thread_safe (~> 0.1)
|
24
|
+
tzinfo (~> 0.3.37)
|
25
|
+
atomic (1.1.15)
|
26
|
+
builder (3.1.4)
|
28
27
|
combustion (0.5.1)
|
29
28
|
activesupport (>= 3.0.0)
|
30
29
|
railties (>= 3.0.0)
|
31
30
|
thor (>= 0.14.6)
|
32
31
|
diff-lcs (1.2.5)
|
32
|
+
docile (1.1.3)
|
33
33
|
erubis (2.7.0)
|
34
|
-
hike (1.2.3)
|
35
34
|
i18n (0.6.9)
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
rack (1.4.5)
|
40
|
-
rack-cache (1.2)
|
41
|
-
rack (>= 0.4)
|
42
|
-
rack-ssl (1.3.3)
|
43
|
-
rack
|
35
|
+
minitest (4.7.5)
|
36
|
+
multi_json (1.9.0)
|
37
|
+
rack (1.5.2)
|
44
38
|
rack-test (0.6.2)
|
45
39
|
rack (>= 1.0)
|
46
|
-
railties (
|
47
|
-
actionpack (=
|
48
|
-
activesupport (=
|
49
|
-
rack-ssl (~> 1.3.2)
|
40
|
+
railties (4.0.3)
|
41
|
+
actionpack (= 4.0.3)
|
42
|
+
activesupport (= 4.0.3)
|
50
43
|
rake (>= 0.8.7)
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
json (~> 1.4)
|
56
|
-
rspec-core (2.14.7)
|
57
|
-
rspec-expectations (2.14.4)
|
44
|
+
thor (>= 0.18.1, < 2.0)
|
45
|
+
rake (10.1.1)
|
46
|
+
rspec-core (2.14.8)
|
47
|
+
rspec-expectations (2.14.5)
|
58
48
|
diff-lcs (>= 1.1.3, < 2.0)
|
59
|
-
rspec-mocks (2.14.
|
60
|
-
rspec-rails (2.14.
|
49
|
+
rspec-mocks (2.14.6)
|
50
|
+
rspec-rails (2.14.1)
|
61
51
|
actionpack (>= 3.0)
|
52
|
+
activemodel (>= 3.0)
|
62
53
|
activesupport (>= 3.0)
|
63
54
|
railties (>= 3.0)
|
64
55
|
rspec-core (~> 2.14.0)
|
65
56
|
rspec-expectations (~> 2.14.0)
|
66
57
|
rspec-mocks (~> 2.14.0)
|
67
|
-
simplecov (0.
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
hike (~> 1.2)
|
73
|
-
multi_json (~> 1.0)
|
74
|
-
rack (~> 1.0)
|
75
|
-
tilt (~> 1.1, != 1.3.0)
|
58
|
+
simplecov (0.8.2)
|
59
|
+
docile (~> 1.1.0)
|
60
|
+
multi_json
|
61
|
+
simplecov-html (~> 0.8.0)
|
62
|
+
simplecov-html (0.8.0)
|
76
63
|
thor (0.18.1)
|
77
|
-
thread_safe (0.
|
78
|
-
atomic
|
79
|
-
|
80
|
-
tzinfo (1.1.0)
|
81
|
-
thread_safe (~> 0.1)
|
64
|
+
thread_safe (0.2.0)
|
65
|
+
atomic (>= 1.1.7, < 2)
|
66
|
+
tzinfo (0.3.39)
|
82
67
|
|
83
68
|
PLATFORMS
|
84
69
|
ruby
|
85
70
|
|
86
71
|
DEPENDENCIES
|
72
|
+
activesupport (~> 4.0)
|
87
73
|
arbre2!
|
88
74
|
bundler (~> 1.3)
|
89
75
|
combustion (~> 0.5)
|
data/arbre.gemspec
CHANGED
@@ -17,7 +17,7 @@ Gem::Specification.new do |s|
|
|
17
17
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
18
18
|
s.require_paths = ["lib"]
|
19
19
|
|
20
|
-
s.add_dependency "activesupport"
|
20
|
+
s.add_dependency "activesupport"
|
21
21
|
|
22
22
|
s.add_development_dependency "bundler", "~> 1.3"
|
23
23
|
s.add_development_dependency "rake"
|
data/lib/arbre/version.rb
CHANGED
data/spec/rails_spec_helper.rb
CHANGED
@@ -6,7 +6,8 @@ require 'arbre/rails'
|
|
6
6
|
|
7
7
|
Combustion.path = 'spec/rails'
|
8
8
|
Combustion.initialize! :action_controller, :action_view do
|
9
|
-
|
9
|
+
# Does not seem to work with Rails 4
|
10
|
+
# config.middleware.use 'Rack::Lint'
|
10
11
|
end
|
11
12
|
|
12
13
|
require 'rspec/rails'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: arbre2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Greg Bell
|
@@ -9,22 +9,22 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2014-03-10 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
|
-
- -
|
18
|
+
- - '>='
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: '
|
20
|
+
version: '0'
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
|
-
- -
|
25
|
+
- - '>='
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: '
|
27
|
+
version: '0'
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: bundler
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
@@ -118,7 +118,6 @@ extensions: []
|
|
118
118
|
extra_rdoc_files: []
|
119
119
|
files:
|
120
120
|
- .gitignore
|
121
|
-
- .ruby-gemset
|
122
121
|
- .ruby-version
|
123
122
|
- .travis.yml
|
124
123
|
- CHANGELOG.md
|
@@ -128,6 +127,8 @@ files:
|
|
128
127
|
- README.md
|
129
128
|
- Rakefile
|
130
129
|
- arbre.gemspec
|
130
|
+
- gemfiles/3.2.x.gemfile
|
131
|
+
- gemfiles/4.0.x.gemfile
|
131
132
|
- lib/arbre.rb
|
132
133
|
- lib/arbre/child_element_collection.rb
|
133
134
|
- lib/arbre/container.rb
|
@@ -251,4 +252,3 @@ test_files:
|
|
251
252
|
- spec/rails_spec_helper.rb
|
252
253
|
- spec/spec_helper.rb
|
253
254
|
- spec/support/arbre_example_group.rb
|
254
|
-
has_rdoc:
|
data/.ruby-gemset
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
flux
|