nested_store_attributes 0.0.1
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 +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +32 -0
- data/lib/nested_store_attributes.rb +3 -0
- data/lib/nested_store_attributes/accepts_store_attributes.rb +248 -0
- data/lib/nested_store_attributes/version.rb +3 -0
- data/lib/tasks/nested_json_attributes_tasks.rake +4 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/models/person.rb +9 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +23 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +78 -0
- data/test/dummy/config/environments/test.rb +39 -0
- data/test/dummy/config/initializers/assets.rb +8 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +56 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20141016114846_create_people.rb +11 -0
- data/test/dummy/db/schema.rb +24 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +16 -0
- data/test/dummy/log/test.log +1184 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/test/fixtures/people.yml +11 -0
- data/test/dummy/test/models/person_test.rb +7 -0
- data/test/nested_json_attributes_test.rb +70 -0
- data/test/test_helper.rb +15 -0
- metadata +170 -0
@@ -0,0 +1,67 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/404.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
62
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
63
|
+
</div>
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
65
|
+
</div>
|
66
|
+
</body>
|
67
|
+
</html>
|
@@ -0,0 +1,67 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/422.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>The change you wanted was rejected.</h1>
|
62
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
63
|
+
</div>
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
65
|
+
</div>
|
66
|
+
</body>
|
67
|
+
</html>
|
@@ -0,0 +1,66 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/500.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>We're sorry, but something went wrong.</h1>
|
62
|
+
</div>
|
63
|
+
<p>If you are the application owner check the logs for more information.</p>
|
64
|
+
</div>
|
65
|
+
</body>
|
66
|
+
</html>
|
File without changes
|
@@ -0,0 +1,70 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class NestedStoreAttributesTest < ActiveSupport::TestCase
|
4
|
+
|
5
|
+
def setup
|
6
|
+
@books = {1 => {isbn: 1234, name: 'war, what is it good for' }, 2 => {isbn: 5678, name: 'the borg'}}
|
7
|
+
@books_array = @books.values.map(&:stringify_keys)
|
8
|
+
@person = Person.create(books_attributes: @books)
|
9
|
+
end
|
10
|
+
|
11
|
+
# called after every single test
|
12
|
+
def teardown
|
13
|
+
# as we are re-initializing @post before every test
|
14
|
+
# setting it to nil here is not essential but I hope
|
15
|
+
# you understand how you can use the teardown method
|
16
|
+
@post = nil
|
17
|
+
end
|
18
|
+
|
19
|
+
test "adds accepts_store_attributes to ActiveRecord" do
|
20
|
+
assert Class.new(ActiveRecord::Base).respond_to?(:accepts_store_attributes_for)
|
21
|
+
end
|
22
|
+
|
23
|
+
test "generates books_attributes= method for person" do
|
24
|
+
assert Person.new.respond_to?(:books_attributes=)
|
25
|
+
end
|
26
|
+
test "generates cars_attributes= method for person" do
|
27
|
+
assert Person.new.respond_to?(:cars_attributes=)
|
28
|
+
end
|
29
|
+
|
30
|
+
test "adds new books as hash" do
|
31
|
+
assert_equal @books_array, @person.books
|
32
|
+
end
|
33
|
+
|
34
|
+
test "adds new books as array" do
|
35
|
+
person = Person.create(books_attributes: @books_array)
|
36
|
+
assert_equal @books_array, person.books
|
37
|
+
end
|
38
|
+
|
39
|
+
test "updates existing books" do
|
40
|
+
@person.books_attributes = [{isbn: 1234, name: 'war and peace'}]
|
41
|
+
expected_array = [{isbn: 1234, name: 'war and peace' }, {isbn: 5678, name: 'the borg'}].map(&:stringify_keys)
|
42
|
+
assert_equal expected_array, @person.books
|
43
|
+
end
|
44
|
+
|
45
|
+
test "removes existing books" do
|
46
|
+
@person.books_attributes = [{isbn: 1234, _destroy: true}]
|
47
|
+
expected_array = [{isbn: 5678, name: 'the borg'}].map(&:stringify_keys)
|
48
|
+
assert_equal expected_array, @person.books
|
49
|
+
end
|
50
|
+
|
51
|
+
test "adds, updates, and removes all at once" do
|
52
|
+
@person.books_attributes = [{isbn: 1234, name: 'war and peace'}, {isbn: 5678, _destroy: 1}, {isbn: 9100, title: 'moon landing'}]
|
53
|
+
expected_array = [{isbn: 1234, name: 'war and peace' }, {isbn: 9100, title: 'moon landing'}].map(&:stringify_keys)
|
54
|
+
assert_equal expected_array, @person.books
|
55
|
+
end
|
56
|
+
|
57
|
+
test "raises error if argument is not a hash or array" do
|
58
|
+
assert_raise ArgumentError do
|
59
|
+
Person.create(books_attributes: 'invalid value')
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
test "wont delete unless allow_destroy is set" do
|
64
|
+
person = Person.create(cars_attributes: [{id: 1, name: 'test'}])
|
65
|
+
person.cars_attributes = [{id: 1, _destroy: true}]
|
66
|
+
assert person.cars = [{id: 1, name: 'test'}]
|
67
|
+
end
|
68
|
+
|
69
|
+
|
70
|
+
end
|
data/test/test_helper.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
# Configure Rails Environment
|
2
|
+
ENV["RAILS_ENV"] = "test"
|
3
|
+
|
4
|
+
require File.expand_path("../dummy/config/environment.rb", __FILE__)
|
5
|
+
require "rails/test_help"
|
6
|
+
|
7
|
+
Rails.backtrace_cleaner.remove_silencers!
|
8
|
+
|
9
|
+
# Load support files
|
10
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
11
|
+
|
12
|
+
# Load fixtures from the engine
|
13
|
+
if ActiveSupport::TestCase.method_defined?(:fixture_path=)
|
14
|
+
ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
|
15
|
+
end
|
metadata
ADDED
@@ -0,0 +1,170 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: nested_store_attributes
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Yonah Forst
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-10-16 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 4.1.6
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 4.1.6
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: sqlite3
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ! '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ! '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: ! 'Access hashes stored on the model (serialzed to text or postgres json)
|
42
|
+
using a similar syntax to accepts_nested_attributes_for '
|
43
|
+
email:
|
44
|
+
- yonaforst@hotmail.com
|
45
|
+
executables: []
|
46
|
+
extensions: []
|
47
|
+
extra_rdoc_files: []
|
48
|
+
files:
|
49
|
+
- MIT-LICENSE
|
50
|
+
- README.rdoc
|
51
|
+
- Rakefile
|
52
|
+
- lib/nested_store_attributes.rb
|
53
|
+
- lib/nested_store_attributes/accepts_store_attributes.rb
|
54
|
+
- lib/nested_store_attributes/version.rb
|
55
|
+
- lib/tasks/nested_json_attributes_tasks.rake
|
56
|
+
- test/dummy/README.rdoc
|
57
|
+
- test/dummy/Rakefile
|
58
|
+
- test/dummy/app/assets/javascripts/application.js
|
59
|
+
- test/dummy/app/assets/stylesheets/application.css
|
60
|
+
- test/dummy/app/controllers/application_controller.rb
|
61
|
+
- test/dummy/app/helpers/application_helper.rb
|
62
|
+
- test/dummy/app/models/person.rb
|
63
|
+
- test/dummy/app/views/layouts/application.html.erb
|
64
|
+
- test/dummy/bin/bundle
|
65
|
+
- test/dummy/bin/rails
|
66
|
+
- test/dummy/bin/rake
|
67
|
+
- test/dummy/config.ru
|
68
|
+
- test/dummy/config/application.rb
|
69
|
+
- test/dummy/config/boot.rb
|
70
|
+
- test/dummy/config/database.yml
|
71
|
+
- test/dummy/config/environment.rb
|
72
|
+
- test/dummy/config/environments/development.rb
|
73
|
+
- test/dummy/config/environments/production.rb
|
74
|
+
- test/dummy/config/environments/test.rb
|
75
|
+
- test/dummy/config/initializers/assets.rb
|
76
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
77
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
78
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
79
|
+
- test/dummy/config/initializers/inflections.rb
|
80
|
+
- test/dummy/config/initializers/mime_types.rb
|
81
|
+
- test/dummy/config/initializers/session_store.rb
|
82
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
83
|
+
- test/dummy/config/locales/en.yml
|
84
|
+
- test/dummy/config/routes.rb
|
85
|
+
- test/dummy/config/secrets.yml
|
86
|
+
- test/dummy/db/development.sqlite3
|
87
|
+
- test/dummy/db/migrate/20141016114846_create_people.rb
|
88
|
+
- test/dummy/db/schema.rb
|
89
|
+
- test/dummy/db/test.sqlite3
|
90
|
+
- test/dummy/log/development.log
|
91
|
+
- test/dummy/log/test.log
|
92
|
+
- test/dummy/public/404.html
|
93
|
+
- test/dummy/public/422.html
|
94
|
+
- test/dummy/public/500.html
|
95
|
+
- test/dummy/public/favicon.ico
|
96
|
+
- test/dummy/test/fixtures/people.yml
|
97
|
+
- test/dummy/test/models/person_test.rb
|
98
|
+
- test/nested_json_attributes_test.rb
|
99
|
+
- test/test_helper.rb
|
100
|
+
homepage:
|
101
|
+
licenses:
|
102
|
+
- MIT
|
103
|
+
metadata: {}
|
104
|
+
post_install_message:
|
105
|
+
rdoc_options: []
|
106
|
+
require_paths:
|
107
|
+
- lib
|
108
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
109
|
+
requirements:
|
110
|
+
- - ! '>='
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: '0'
|
113
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ! '>='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
requirements: []
|
119
|
+
rubyforge_project:
|
120
|
+
rubygems_version: 2.2.2
|
121
|
+
signing_key:
|
122
|
+
specification_version: 4
|
123
|
+
summary: ! '''Accept_nested_attributes_for'' for collections stored in a serialized
|
124
|
+
field or json column'
|
125
|
+
test_files:
|
126
|
+
- test/dummy/app/assets/javascripts/application.js
|
127
|
+
- test/dummy/app/assets/stylesheets/application.css
|
128
|
+
- test/dummy/app/controllers/application_controller.rb
|
129
|
+
- test/dummy/app/helpers/application_helper.rb
|
130
|
+
- test/dummy/app/models/person.rb
|
131
|
+
- test/dummy/app/views/layouts/application.html.erb
|
132
|
+
- test/dummy/bin/bundle
|
133
|
+
- test/dummy/bin/rails
|
134
|
+
- test/dummy/bin/rake
|
135
|
+
- test/dummy/config/application.rb
|
136
|
+
- test/dummy/config/boot.rb
|
137
|
+
- test/dummy/config/database.yml
|
138
|
+
- test/dummy/config/environment.rb
|
139
|
+
- test/dummy/config/environments/development.rb
|
140
|
+
- test/dummy/config/environments/production.rb
|
141
|
+
- test/dummy/config/environments/test.rb
|
142
|
+
- test/dummy/config/initializers/assets.rb
|
143
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
144
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
145
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
146
|
+
- test/dummy/config/initializers/inflections.rb
|
147
|
+
- test/dummy/config/initializers/mime_types.rb
|
148
|
+
- test/dummy/config/initializers/session_store.rb
|
149
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
150
|
+
- test/dummy/config/locales/en.yml
|
151
|
+
- test/dummy/config/routes.rb
|
152
|
+
- test/dummy/config/secrets.yml
|
153
|
+
- test/dummy/config.ru
|
154
|
+
- test/dummy/db/development.sqlite3
|
155
|
+
- test/dummy/db/migrate/20141016114846_create_people.rb
|
156
|
+
- test/dummy/db/schema.rb
|
157
|
+
- test/dummy/db/test.sqlite3
|
158
|
+
- test/dummy/log/development.log
|
159
|
+
- test/dummy/log/test.log
|
160
|
+
- test/dummy/public/404.html
|
161
|
+
- test/dummy/public/422.html
|
162
|
+
- test/dummy/public/500.html
|
163
|
+
- test/dummy/public/favicon.ico
|
164
|
+
- test/dummy/Rakefile
|
165
|
+
- test/dummy/README.rdoc
|
166
|
+
- test/dummy/test/fixtures/people.yml
|
167
|
+
- test/dummy/test/models/person_test.rb
|
168
|
+
- test/nested_json_attributes_test.rb
|
169
|
+
- test/test_helper.rb
|
170
|
+
has_rdoc:
|