acts_as_addressable 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +28 -0
- data/app/assets/javascripts/acts_as_addressable/application.js +13 -0
- data/app/assets/javascripts/acts_as_addressable/locations.js +2 -0
- data/app/assets/stylesheets/acts_as_addressable/application.css +15 -0
- data/app/assets/stylesheets/acts_as_addressable/locations.css +4 -0
- data/app/assets/stylesheets/scaffold.css +56 -0
- data/app/controllers/acts_as_addressable/application_controller.rb +4 -0
- data/app/controllers/acts_as_addressable/locations_controller.rb +62 -0
- data/app/helpers/acts_as_addressable/application_helper.rb +4 -0
- data/app/helpers/acts_as_addressable/locations_helper.rb +4 -0
- data/app/models/acts_as_addressable/location.rb +33 -0
- data/app/views/acts_as_addressable/locations/_form.html.erb +65 -0
- data/app/views/acts_as_addressable/locations/edit.html.erb +6 -0
- data/app/views/acts_as_addressable/locations/index.html.erb +47 -0
- data/app/views/acts_as_addressable/locations/new.html.erb +5 -0
- data/app/views/acts_as_addressable/locations/show.html.erb +64 -0
- data/app/views/layouts/acts_as_addressable/application.html.erb +14 -0
- data/config/routes.rb +4 -0
- data/db/migrate/20140426032656_create_acts_as_addressable_locations.rb +23 -0
- data/lib/acts_as_addressable.rb +22 -0
- data/lib/acts_as_addressable/engine.rb +23 -0
- data/lib/acts_as_addressable/local_instance_methods.rb +11 -0
- data/lib/acts_as_addressable/version.rb +3 -0
- data/lib/tasks/acts_as_addressable_tasks.rake +4 -0
- data/spec/acts_as_addressable_spec.rb +23 -0
- data/spec/controllers/acts_as_addressable/locations_controller_spec.rb +163 -0
- data/spec/factories/acts_as_addressable_locations.rb +31 -0
- data/spec/helpers/acts_as_addressable/locations_helper_spec.rb +17 -0
- data/spec/models/acts_as_addressable/location_spec.rb +21 -0
- data/spec/routing/acts_as_addressable/locations_routing_spec.rb +38 -0
- data/spec/spec_helper.rb +54 -0
- data/spec/test_app/README.rdoc +28 -0
- data/spec/test_app/Rakefile +6 -0
- data/spec/test_app/app/assets/javascripts/application.js +13 -0
- data/spec/test_app/app/assets/stylesheets/application.css +15 -0
- data/spec/test_app/app/controllers/application_controller.rb +5 -0
- data/spec/test_app/app/helpers/application_helper.rb +2 -0
- data/spec/test_app/app/models/user.rb +3 -0
- data/spec/test_app/app/views/layouts/application.html.erb +14 -0
- data/spec/test_app/bin/bundle +3 -0
- data/spec/test_app/bin/rails +4 -0
- data/spec/test_app/bin/rake +4 -0
- data/spec/test_app/config.ru +4 -0
- data/spec/test_app/config/application.rb +29 -0
- data/spec/test_app/config/boot.rb +5 -0
- data/spec/test_app/config/database.yml +25 -0
- data/spec/test_app/config/environment.rb +5 -0
- data/spec/test_app/config/environments/development.rb +37 -0
- data/spec/test_app/config/environments/production.rb +83 -0
- data/spec/test_app/config/environments/test.rb +39 -0
- data/spec/test_app/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/test_app/config/initializers/cookies_serializer.rb +3 -0
- data/spec/test_app/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/test_app/config/initializers/inflections.rb +16 -0
- data/spec/test_app/config/initializers/mime_types.rb +4 -0
- data/spec/test_app/config/initializers/session_store.rb +3 -0
- data/spec/test_app/config/initializers/wrap_parameters.rb +14 -0
- data/spec/test_app/config/locales/en.yml +23 -0
- data/spec/test_app/config/routes.rb +4 -0
- data/spec/test_app/config/secrets.yml +22 -0
- data/spec/test_app/db/development.sqlite3 +0 -0
- data/spec/test_app/db/migrate/20140507215937_create_users.rb +9 -0
- data/spec/test_app/db/production.sqlite3 +0 -0
- data/spec/test_app/db/schema.rb +42 -0
- data/spec/test_app/db/test.sqlite3 +0 -0
- data/spec/test_app/log/development.log +197 -0
- data/spec/test_app/log/test.log +5110 -0
- data/spec/test_app/public/404.html +67 -0
- data/spec/test_app/public/422.html +67 -0
- data/spec/test_app/public/500.html +66 -0
- data/spec/test_app/public/favicon.ico +0 -0
- metadata +304 -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
|
metadata
ADDED
@@ -0,0 +1,304 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: acts_as_addressable
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jeremy Ward
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-05-08 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.0.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 4.0.0
|
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
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec-rails
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 3.0.0.beta
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 3.0.0.beta
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: database_cleaner
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: factory_girl_rails
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: guard-rspec
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: pry
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: shoulda-matchers
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: thor
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0'
|
153
|
+
description: A simple engine to add addressable features to a domain object.
|
154
|
+
email:
|
155
|
+
- jeremy.ward@digital-ocd.com
|
156
|
+
executables: []
|
157
|
+
extensions: []
|
158
|
+
extra_rdoc_files: []
|
159
|
+
files:
|
160
|
+
- MIT-LICENSE
|
161
|
+
- README.rdoc
|
162
|
+
- Rakefile
|
163
|
+
- app/assets/javascripts/acts_as_addressable/application.js
|
164
|
+
- app/assets/javascripts/acts_as_addressable/locations.js
|
165
|
+
- app/assets/stylesheets/acts_as_addressable/application.css
|
166
|
+
- app/assets/stylesheets/acts_as_addressable/locations.css
|
167
|
+
- app/assets/stylesheets/scaffold.css
|
168
|
+
- app/controllers/acts_as_addressable/application_controller.rb
|
169
|
+
- app/controllers/acts_as_addressable/locations_controller.rb
|
170
|
+
- app/helpers/acts_as_addressable/application_helper.rb
|
171
|
+
- app/helpers/acts_as_addressable/locations_helper.rb
|
172
|
+
- app/models/acts_as_addressable/location.rb
|
173
|
+
- app/views/acts_as_addressable/locations/_form.html.erb
|
174
|
+
- app/views/acts_as_addressable/locations/edit.html.erb
|
175
|
+
- app/views/acts_as_addressable/locations/index.html.erb
|
176
|
+
- app/views/acts_as_addressable/locations/new.html.erb
|
177
|
+
- app/views/acts_as_addressable/locations/show.html.erb
|
178
|
+
- app/views/layouts/acts_as_addressable/application.html.erb
|
179
|
+
- config/routes.rb
|
180
|
+
- db/migrate/20140426032656_create_acts_as_addressable_locations.rb
|
181
|
+
- lib/acts_as_addressable.rb
|
182
|
+
- lib/acts_as_addressable/engine.rb
|
183
|
+
- lib/acts_as_addressable/local_instance_methods.rb
|
184
|
+
- lib/acts_as_addressable/version.rb
|
185
|
+
- lib/tasks/acts_as_addressable_tasks.rake
|
186
|
+
- spec/acts_as_addressable_spec.rb
|
187
|
+
- spec/controllers/acts_as_addressable/locations_controller_spec.rb
|
188
|
+
- spec/factories/acts_as_addressable_locations.rb
|
189
|
+
- spec/helpers/acts_as_addressable/locations_helper_spec.rb
|
190
|
+
- spec/models/acts_as_addressable/location_spec.rb
|
191
|
+
- spec/routing/acts_as_addressable/locations_routing_spec.rb
|
192
|
+
- spec/spec_helper.rb
|
193
|
+
- spec/test_app/README.rdoc
|
194
|
+
- spec/test_app/Rakefile
|
195
|
+
- spec/test_app/app/assets/javascripts/application.js
|
196
|
+
- spec/test_app/app/assets/stylesheets/application.css
|
197
|
+
- spec/test_app/app/controllers/application_controller.rb
|
198
|
+
- spec/test_app/app/helpers/application_helper.rb
|
199
|
+
- spec/test_app/app/models/user.rb
|
200
|
+
- spec/test_app/app/views/layouts/application.html.erb
|
201
|
+
- spec/test_app/bin/bundle
|
202
|
+
- spec/test_app/bin/rails
|
203
|
+
- spec/test_app/bin/rake
|
204
|
+
- spec/test_app/config.ru
|
205
|
+
- spec/test_app/config/application.rb
|
206
|
+
- spec/test_app/config/boot.rb
|
207
|
+
- spec/test_app/config/database.yml
|
208
|
+
- spec/test_app/config/environment.rb
|
209
|
+
- spec/test_app/config/environments/development.rb
|
210
|
+
- spec/test_app/config/environments/production.rb
|
211
|
+
- spec/test_app/config/environments/test.rb
|
212
|
+
- spec/test_app/config/initializers/backtrace_silencers.rb
|
213
|
+
- spec/test_app/config/initializers/cookies_serializer.rb
|
214
|
+
- spec/test_app/config/initializers/filter_parameter_logging.rb
|
215
|
+
- spec/test_app/config/initializers/inflections.rb
|
216
|
+
- spec/test_app/config/initializers/mime_types.rb
|
217
|
+
- spec/test_app/config/initializers/session_store.rb
|
218
|
+
- spec/test_app/config/initializers/wrap_parameters.rb
|
219
|
+
- spec/test_app/config/locales/en.yml
|
220
|
+
- spec/test_app/config/routes.rb
|
221
|
+
- spec/test_app/config/secrets.yml
|
222
|
+
- spec/test_app/db/development.sqlite3
|
223
|
+
- spec/test_app/db/migrate/20140507215937_create_users.rb
|
224
|
+
- spec/test_app/db/production.sqlite3
|
225
|
+
- spec/test_app/db/schema.rb
|
226
|
+
- spec/test_app/db/test.sqlite3
|
227
|
+
- spec/test_app/log/development.log
|
228
|
+
- spec/test_app/log/test.log
|
229
|
+
- spec/test_app/public/404.html
|
230
|
+
- spec/test_app/public/422.html
|
231
|
+
- spec/test_app/public/500.html
|
232
|
+
- spec/test_app/public/favicon.ico
|
233
|
+
homepage: https://github.com/jrmyward/acts_as_addressable
|
234
|
+
licenses:
|
235
|
+
- MIT
|
236
|
+
metadata: {}
|
237
|
+
post_install_message:
|
238
|
+
rdoc_options: []
|
239
|
+
require_paths:
|
240
|
+
- lib
|
241
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
242
|
+
requirements:
|
243
|
+
- - ">="
|
244
|
+
- !ruby/object:Gem::Version
|
245
|
+
version: '0'
|
246
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
247
|
+
requirements:
|
248
|
+
- - ">="
|
249
|
+
- !ruby/object:Gem::Version
|
250
|
+
version: '0'
|
251
|
+
requirements: []
|
252
|
+
rubyforge_project:
|
253
|
+
rubygems_version: 2.2.0
|
254
|
+
signing_key:
|
255
|
+
specification_version: 4
|
256
|
+
summary: A simple engine to add addressable features to a domain object.
|
257
|
+
test_files:
|
258
|
+
- spec/acts_as_addressable_spec.rb
|
259
|
+
- spec/controllers/acts_as_addressable/locations_controller_spec.rb
|
260
|
+
- spec/factories/acts_as_addressable_locations.rb
|
261
|
+
- spec/helpers/acts_as_addressable/locations_helper_spec.rb
|
262
|
+
- spec/models/acts_as_addressable/location_spec.rb
|
263
|
+
- spec/routing/acts_as_addressable/locations_routing_spec.rb
|
264
|
+
- spec/spec_helper.rb
|
265
|
+
- spec/test_app/app/assets/javascripts/application.js
|
266
|
+
- spec/test_app/app/assets/stylesheets/application.css
|
267
|
+
- spec/test_app/app/controllers/application_controller.rb
|
268
|
+
- spec/test_app/app/helpers/application_helper.rb
|
269
|
+
- spec/test_app/app/models/user.rb
|
270
|
+
- spec/test_app/app/views/layouts/application.html.erb
|
271
|
+
- spec/test_app/bin/bundle
|
272
|
+
- spec/test_app/bin/rails
|
273
|
+
- spec/test_app/bin/rake
|
274
|
+
- spec/test_app/config/application.rb
|
275
|
+
- spec/test_app/config/boot.rb
|
276
|
+
- spec/test_app/config/database.yml
|
277
|
+
- spec/test_app/config/environment.rb
|
278
|
+
- spec/test_app/config/environments/development.rb
|
279
|
+
- spec/test_app/config/environments/production.rb
|
280
|
+
- spec/test_app/config/environments/test.rb
|
281
|
+
- spec/test_app/config/initializers/backtrace_silencers.rb
|
282
|
+
- spec/test_app/config/initializers/cookies_serializer.rb
|
283
|
+
- spec/test_app/config/initializers/filter_parameter_logging.rb
|
284
|
+
- spec/test_app/config/initializers/inflections.rb
|
285
|
+
- spec/test_app/config/initializers/mime_types.rb
|
286
|
+
- spec/test_app/config/initializers/session_store.rb
|
287
|
+
- spec/test_app/config/initializers/wrap_parameters.rb
|
288
|
+
- spec/test_app/config/locales/en.yml
|
289
|
+
- spec/test_app/config/routes.rb
|
290
|
+
- spec/test_app/config/secrets.yml
|
291
|
+
- spec/test_app/config.ru
|
292
|
+
- spec/test_app/db/development.sqlite3
|
293
|
+
- spec/test_app/db/migrate/20140507215937_create_users.rb
|
294
|
+
- spec/test_app/db/production.sqlite3
|
295
|
+
- spec/test_app/db/schema.rb
|
296
|
+
- spec/test_app/db/test.sqlite3
|
297
|
+
- spec/test_app/log/development.log
|
298
|
+
- spec/test_app/log/test.log
|
299
|
+
- spec/test_app/public/404.html
|
300
|
+
- spec/test_app/public/422.html
|
301
|
+
- spec/test_app/public/500.html
|
302
|
+
- spec/test_app/public/favicon.ico
|
303
|
+
- spec/test_app/Rakefile
|
304
|
+
- spec/test_app/README.rdoc
|