easy_contact 0.0.3 → 0.1.0
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
- checksums.yaml.gz.sig +2 -0
- data.tar.gz.sig +0 -0
- data/Rakefile +16 -9
- data/app/models/easy_contact/entry.rb +1 -1
- data/lib/easy_contact/version.rb +1 -1
- 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 +13 -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/user.rb +3 -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 +29 -0
- data/test/dummy/config/environments/production.rb +80 -0
- data/test/dummy/config/environments/test.rb +36 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -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 +5 -0
- data/test/dummy/config/initializers/secret_token.rb +12 -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/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20130221043330_create_users.rb +8 -0
- data/test/dummy/db/migrate/20130221043348_easy_contact_migration.rb +18 -0
- data/test/dummy/db/schema.rb +37 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +67 -0
- data/test/dummy/log/test.log +825 -0
- data/test/dummy/public/404.html +58 -0
- data/test/dummy/public/422.html +58 -0
- data/test/dummy/public/500.html +57 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/test/models/easy_contact/entry_test.rb +36 -0
- data/test/dummy/test/models/easy_contact/foo_test.rb +8 -0
- data/test/easy_contact_test.rb +7 -0
- data/test/test_helper.rb +30 -0
- metadata +123 -48
- metadata.gz.sig +0 -0
@@ -0,0 +1,58 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<style>
|
6
|
+
body {
|
7
|
+
background-color: #EFEFEF;
|
8
|
+
color: #2E2F30;
|
9
|
+
text-align: center;
|
10
|
+
font-family: arial, sans-serif;
|
11
|
+
}
|
12
|
+
|
13
|
+
div.dialog {
|
14
|
+
width: 25em;
|
15
|
+
margin: 4em auto 0 auto;
|
16
|
+
border: 1px solid #CCC;
|
17
|
+
border-right-color: #999;
|
18
|
+
border-left-color: #999;
|
19
|
+
border-bottom-color: #BBB;
|
20
|
+
border-top: #B00100 solid 4px;
|
21
|
+
border-top-left-radius: 9px;
|
22
|
+
border-top-right-radius: 9px;
|
23
|
+
background-color: white;
|
24
|
+
padding: 7px 4em 0 4em;
|
25
|
+
}
|
26
|
+
|
27
|
+
h1 {
|
28
|
+
font-size: 100%;
|
29
|
+
color: #730E15;
|
30
|
+
line-height: 1.5em;
|
31
|
+
}
|
32
|
+
|
33
|
+
body > p {
|
34
|
+
width: 33em;
|
35
|
+
margin: 0 auto 1em;
|
36
|
+
padding: 1em 0;
|
37
|
+
background-color: #F7F7F7;
|
38
|
+
border: 1px solid #CCC;
|
39
|
+
border-right-color: #999;
|
40
|
+
border-bottom-color: #999;
|
41
|
+
border-bottom-left-radius: 4px;
|
42
|
+
border-bottom-right-radius: 4px;
|
43
|
+
border-top-color: #DADADA;
|
44
|
+
color: #666;
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
46
|
+
}
|
47
|
+
</style>
|
48
|
+
</head>
|
49
|
+
|
50
|
+
<body>
|
51
|
+
<!-- This file lives in public/404.html -->
|
52
|
+
<div class="dialog">
|
53
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
54
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
55
|
+
</div>
|
56
|
+
<p>If you are the application owner check the logs for more information.</p>
|
57
|
+
</body>
|
58
|
+
</html>
|
@@ -0,0 +1,58 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
5
|
+
<style>
|
6
|
+
body {
|
7
|
+
background-color: #EFEFEF;
|
8
|
+
color: #2E2F30;
|
9
|
+
text-align: center;
|
10
|
+
font-family: arial, sans-serif;
|
11
|
+
}
|
12
|
+
|
13
|
+
div.dialog {
|
14
|
+
width: 25em;
|
15
|
+
margin: 4em auto 0 auto;
|
16
|
+
border: 1px solid #CCC;
|
17
|
+
border-right-color: #999;
|
18
|
+
border-left-color: #999;
|
19
|
+
border-bottom-color: #BBB;
|
20
|
+
border-top: #B00100 solid 4px;
|
21
|
+
border-top-left-radius: 9px;
|
22
|
+
border-top-right-radius: 9px;
|
23
|
+
background-color: white;
|
24
|
+
padding: 7px 4em 0 4em;
|
25
|
+
}
|
26
|
+
|
27
|
+
h1 {
|
28
|
+
font-size: 100%;
|
29
|
+
color: #730E15;
|
30
|
+
line-height: 1.5em;
|
31
|
+
}
|
32
|
+
|
33
|
+
body > p {
|
34
|
+
width: 33em;
|
35
|
+
margin: 0 auto 1em;
|
36
|
+
padding: 1em 0;
|
37
|
+
background-color: #F7F7F7;
|
38
|
+
border: 1px solid #CCC;
|
39
|
+
border-right-color: #999;
|
40
|
+
border-bottom-color: #999;
|
41
|
+
border-bottom-left-radius: 4px;
|
42
|
+
border-bottom-right-radius: 4px;
|
43
|
+
border-top-color: #DADADA;
|
44
|
+
color: #666;
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
46
|
+
}
|
47
|
+
</style>
|
48
|
+
</head>
|
49
|
+
|
50
|
+
<body>
|
51
|
+
<!-- This file lives in public/422.html -->
|
52
|
+
<div class="dialog">
|
53
|
+
<h1>The change you wanted was rejected.</h1>
|
54
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
55
|
+
</div>
|
56
|
+
<p>If you are the application owner check the logs for more information.</p>
|
57
|
+
</body>
|
58
|
+
</html>
|
@@ -0,0 +1,57 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
5
|
+
<style>
|
6
|
+
body {
|
7
|
+
background-color: #EFEFEF;
|
8
|
+
color: #2E2F30;
|
9
|
+
text-align: center;
|
10
|
+
font-family: arial, sans-serif;
|
11
|
+
}
|
12
|
+
|
13
|
+
div.dialog {
|
14
|
+
width: 25em;
|
15
|
+
margin: 4em auto 0 auto;
|
16
|
+
border: 1px solid #CCC;
|
17
|
+
border-right-color: #999;
|
18
|
+
border-left-color: #999;
|
19
|
+
border-bottom-color: #BBB;
|
20
|
+
border-top: #B00100 solid 4px;
|
21
|
+
border-top-left-radius: 9px;
|
22
|
+
border-top-right-radius: 9px;
|
23
|
+
background-color: white;
|
24
|
+
padding: 7px 4em 0 4em;
|
25
|
+
}
|
26
|
+
|
27
|
+
h1 {
|
28
|
+
font-size: 100%;
|
29
|
+
color: #730E15;
|
30
|
+
line-height: 1.5em;
|
31
|
+
}
|
32
|
+
|
33
|
+
body > p {
|
34
|
+
width: 33em;
|
35
|
+
margin: 0 auto 1em;
|
36
|
+
padding: 1em 0;
|
37
|
+
background-color: #F7F7F7;
|
38
|
+
border: 1px solid #CCC;
|
39
|
+
border-right-color: #999;
|
40
|
+
border-bottom-color: #999;
|
41
|
+
border-bottom-left-radius: 4px;
|
42
|
+
border-bottom-right-radius: 4px;
|
43
|
+
border-top-color: #DADADA;
|
44
|
+
color: #666;
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
46
|
+
}
|
47
|
+
</style>
|
48
|
+
</head>
|
49
|
+
|
50
|
+
<body>
|
51
|
+
<!-- This file lives in public/500.html -->
|
52
|
+
<div class="dialog">
|
53
|
+
<h1>We're sorry, but something went wrong.</h1>
|
54
|
+
</div>
|
55
|
+
<p>If you are the application owner check the logs for more information.</p>
|
56
|
+
</body>
|
57
|
+
</html>
|
File without changes
|
@@ -0,0 +1,36 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
describe EasyContact::Entry do
|
4
|
+
describe 'Basic' do
|
5
|
+
it 'create nested attributes' do
|
6
|
+
params = { :entries_attributes => [
|
7
|
+
{ :content => 'first entry' },
|
8
|
+
{ :content => 'second entry' }
|
9
|
+
]}
|
10
|
+
|
11
|
+
user = User.create(params)
|
12
|
+
user.entries.count.must_equal(2)
|
13
|
+
end
|
14
|
+
|
15
|
+
it 'create nested names' do
|
16
|
+
params = { :names_attributes => [
|
17
|
+
{ :content => 'first name' },
|
18
|
+
{ :content => 'second name' }
|
19
|
+
]}
|
20
|
+
|
21
|
+
user = User.create(params)
|
22
|
+
user.names.count.must_equal(2)
|
23
|
+
user.entries.count.must_equal(2)
|
24
|
+
end
|
25
|
+
|
26
|
+
it 'reject blank field' do
|
27
|
+
params = { :names_attributes => [
|
28
|
+
{ :content => '' },
|
29
|
+
{ :content => 'second name' }
|
30
|
+
]}
|
31
|
+
|
32
|
+
user = User.create(params)
|
33
|
+
user.names.count.must_equal(1)
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
data/test/test_helper.rb
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
# Configure Rails Environment
|
2
|
+
ENV["RAILS_ENV"] = "test"
|
3
|
+
|
4
|
+
require File.expand_path("../dummy/config/environment", __FILE__)
|
5
|
+
require "rails/test_help"
|
6
|
+
require "minitest/rails"
|
7
|
+
|
8
|
+
Rails.backtrace_cleaner.remove_silencers!
|
9
|
+
|
10
|
+
# Load support files
|
11
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
12
|
+
|
13
|
+
# Load fixtures from the engine
|
14
|
+
if ActiveSupport::TestCase.method_defined?(:fixture_path=)
|
15
|
+
ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
|
16
|
+
end
|
17
|
+
|
18
|
+
# To add Capybara feature tests add `gem "minitest-rails-capybara"`
|
19
|
+
# to the test group in the Gemfile and uncomment the following:
|
20
|
+
# require "minitest/rails/capybara"
|
21
|
+
|
22
|
+
# Uncomment for awesome colorful output
|
23
|
+
# require "minitest/pride"
|
24
|
+
|
25
|
+
#class ActiveSupport::TestCase
|
26
|
+
# Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
|
27
|
+
# fixtures :all
|
28
|
+
|
29
|
+
# Add more helper methods to be used by all tests here...
|
30
|
+
#end
|
metadata
CHANGED
@@ -1,73 +1,62 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: easy_contact
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
5
|
-
prerelease:
|
4
|
+
version: 0.1.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Yen-Ju Chen
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain:
|
12
|
-
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
LzlJekFKWlo4UHRPUGkwSGtUd1pJdnBTNmpMRjZqZXEyd3IrUThuYVFaNlMv
|
35
|
-
Sm5hbEJlNm43ZExTCkxPRXAzV3dMYWZCWjlWdElRay92Z0IzUUp4b3I4WDRS
|
36
|
-
M0lBc1Z2QzJZa0d3SjA5cUZWM1dRV1daU1NYUkp5ajUKMER3VStLZlV0YTRI
|
37
|
-
V1JyK2psKzRrWWVpVUtnYW1kdjJwUTRWYUo4M1ZHQzNGSXBVazlUVUxDTTN2
|
38
|
-
NWlIYkRRdQpvWnNXQ1E9PQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==
|
39
|
-
date: 2013-03-19 00:00:00.000000000 Z
|
11
|
+
- |
|
12
|
+
-----BEGIN CERTIFICATE-----
|
13
|
+
MIIDMDCCAhigAwIBAgIBADANBgkqhkiG9w0BAQUFADA+MRAwDgYDVQQDDAd5amNo
|
14
|
+
ZW54MRUwEwYKCZImiZPyLGQBGRYFZ21haWwxEzARBgoJkiaJk/IsZAEZFgNjb20w
|
15
|
+
HhcNMTMwMjA3MDEyODI4WhcNMTQwMjA3MDEyODI4WjA+MRAwDgYDVQQDDAd5amNo
|
16
|
+
ZW54MRUwEwYKCZImiZPyLGQBGRYFZ21haWwxEzARBgoJkiaJk/IsZAEZFgNjb20w
|
17
|
+
ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDfzdtQlNyw5y9701pRrdCM
|
18
|
+
jVWGAMJ7Dyat2mjDVGhMsH/be4j8yn97pa6mymIQUzQaU1KQCw8V+FdV0h4p7HOp
|
19
|
+
zj3/mXF1UlcBL5EtItydy36vdanDHdfGbzIYMpnJsGA5ZNDWrBXWL9iQfkurMecq
|
20
|
+
v/w5r80KIaZkl2xMW8jnt33MXHEBjCASWd1yBMlzf1AOr75d0k2bYsSU+GExxexY
|
21
|
+
hPFzLMRM/VJxqitFbYnlgH5zyqBOcBmG3Hd0VaRi137XjBF4ferj21iX/RV4NIOZ
|
22
|
+
Hz2YbTVz80NJNHOpZDlSNE4vnIANp5fnmwNkAi3PTMxYZC89jWDABbqE783xWZkP
|
23
|
+
AgMBAAGjOTA3MAkGA1UdEwQCMAAwHQYDVR0OBBYEFAUvZi7fEySk49HTErbfMB2K
|
24
|
+
S4igMAsGA1UdDwQEAwIEsDANBgkqhkiG9w0BAQUFAAOCAQEAgUkiFf7KQbGt1lUq
|
25
|
+
jQiV8nol30+dWSIQ0/aTNN1lbgaKXq86Jqp9IIWbQ9oQLHuemXq0Fx7abrdIqJAw
|
26
|
+
QC7UleZtxRfT8pk3TIFOiinGbWlG/iJS85Pv0DWnAT3cl76M/r4M+QHOu38VAOJy
|
27
|
+
6rUHWia/9IzAJZZ8PtOPi0HkTwZIvpS6jLF6jeq2wr+Q8naQZ6S/JnalBe6n7dLS
|
28
|
+
LOEp3WwLafBZ9VtIQk/vgB3QJxor8X4R3IAsVvC2YkGwJ09qFV3WQWWZSSXRJyj5
|
29
|
+
0DwU+KfUta4HWRr+jl+4kYeiUKgamdv2pQ4VaJ83VGC3FIpUk9TULCM3v5iHbDQu
|
30
|
+
oZsWCQ==
|
31
|
+
-----END CERTIFICATE-----
|
32
|
+
date: 2013-07-17 00:00:00.000000000 Z
|
40
33
|
dependencies:
|
41
34
|
- !ruby/object:Gem::Dependency
|
42
35
|
name: rails
|
43
36
|
requirement: !ruby/object:Gem::Requirement
|
44
|
-
none: false
|
45
37
|
requirements:
|
46
|
-
- -
|
38
|
+
- - '>='
|
47
39
|
- !ruby/object:Gem::Version
|
48
|
-
version:
|
40
|
+
version: 4.0.0
|
49
41
|
type: :runtime
|
50
42
|
prerelease: false
|
51
43
|
version_requirements: !ruby/object:Gem::Requirement
|
52
|
-
none: false
|
53
44
|
requirements:
|
54
|
-
- -
|
45
|
+
- - '>='
|
55
46
|
- !ruby/object:Gem::Version
|
56
|
-
version:
|
47
|
+
version: 4.0.0
|
57
48
|
- !ruby/object:Gem::Dependency
|
58
49
|
name: sqlite3
|
59
50
|
requirement: !ruby/object:Gem::Requirement
|
60
|
-
none: false
|
61
51
|
requirements:
|
62
|
-
- -
|
52
|
+
- - '>='
|
63
53
|
- !ruby/object:Gem::Version
|
64
54
|
version: '0'
|
65
55
|
type: :development
|
66
56
|
prerelease: false
|
67
57
|
version_requirements: !ruby/object:Gem::Requirement
|
68
|
-
none: false
|
69
58
|
requirements:
|
70
|
-
- -
|
59
|
+
- - '>='
|
71
60
|
- !ruby/object:Gem::Version
|
72
61
|
version: '0'
|
73
62
|
description: A very simple contact system for Rails
|
@@ -100,28 +89,114 @@ files:
|
|
100
89
|
- MIT-LICENSE
|
101
90
|
- Rakefile
|
102
91
|
- README.md
|
92
|
+
- test/dummy/app/assets/javascripts/application.js
|
93
|
+
- test/dummy/app/assets/stylesheets/application.css
|
94
|
+
- test/dummy/app/controllers/application_controller.rb
|
95
|
+
- test/dummy/app/helpers/application_helper.rb
|
96
|
+
- test/dummy/app/models/user.rb
|
97
|
+
- test/dummy/app/views/layouts/application.html.erb
|
98
|
+
- test/dummy/bin/bundle
|
99
|
+
- test/dummy/bin/rails
|
100
|
+
- test/dummy/bin/rake
|
101
|
+
- test/dummy/config/application.rb
|
102
|
+
- test/dummy/config/boot.rb
|
103
|
+
- test/dummy/config/database.yml
|
104
|
+
- test/dummy/config/environment.rb
|
105
|
+
- test/dummy/config/environments/development.rb
|
106
|
+
- test/dummy/config/environments/production.rb
|
107
|
+
- test/dummy/config/environments/test.rb
|
108
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
109
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
110
|
+
- test/dummy/config/initializers/inflections.rb
|
111
|
+
- test/dummy/config/initializers/mime_types.rb
|
112
|
+
- test/dummy/config/initializers/secret_token.rb
|
113
|
+
- test/dummy/config/initializers/session_store.rb
|
114
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
115
|
+
- test/dummy/config/locales/en.yml
|
116
|
+
- test/dummy/config/routes.rb
|
117
|
+
- test/dummy/config.ru
|
118
|
+
- test/dummy/db/development.sqlite3
|
119
|
+
- test/dummy/db/migrate/20130221043330_create_users.rb
|
120
|
+
- test/dummy/db/migrate/20130221043348_easy_contact_migration.rb
|
121
|
+
- test/dummy/db/schema.rb
|
122
|
+
- test/dummy/db/test.sqlite3
|
123
|
+
- test/dummy/log/development.log
|
124
|
+
- test/dummy/log/test.log
|
125
|
+
- test/dummy/public/404.html
|
126
|
+
- test/dummy/public/422.html
|
127
|
+
- test/dummy/public/500.html
|
128
|
+
- test/dummy/public/favicon.ico
|
129
|
+
- test/dummy/Rakefile
|
130
|
+
- test/dummy/README.rdoc
|
131
|
+
- test/dummy/test/models/easy_contact/entry_test.rb
|
132
|
+
- test/dummy/test/models/easy_contact/foo_test.rb
|
133
|
+
- test/easy_contact_test.rb
|
134
|
+
- test/test_helper.rb
|
103
135
|
homepage: https://github.com/yjchen/easy_contact
|
104
|
-
licenses:
|
136
|
+
licenses:
|
137
|
+
- MIT
|
138
|
+
metadata: {}
|
105
139
|
post_install_message:
|
106
140
|
rdoc_options: []
|
107
141
|
require_paths:
|
108
142
|
- lib
|
109
143
|
required_ruby_version: !ruby/object:Gem::Requirement
|
110
|
-
none: false
|
111
144
|
requirements:
|
112
|
-
- -
|
145
|
+
- - '>='
|
113
146
|
- !ruby/object:Gem::Version
|
114
147
|
version: '0'
|
115
148
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
116
|
-
none: false
|
117
149
|
requirements:
|
118
|
-
- -
|
150
|
+
- - '>='
|
119
151
|
- !ruby/object:Gem::Version
|
120
152
|
version: '0'
|
121
153
|
requirements: []
|
122
154
|
rubyforge_project:
|
123
|
-
rubygems_version:
|
155
|
+
rubygems_version: 2.0.3
|
124
156
|
signing_key:
|
125
|
-
specification_version:
|
157
|
+
specification_version: 4
|
126
158
|
summary: A very simple contact system for Rails
|
127
|
-
test_files:
|
159
|
+
test_files:
|
160
|
+
- test/dummy/app/assets/javascripts/application.js
|
161
|
+
- test/dummy/app/assets/stylesheets/application.css
|
162
|
+
- test/dummy/app/controllers/application_controller.rb
|
163
|
+
- test/dummy/app/helpers/application_helper.rb
|
164
|
+
- test/dummy/app/models/user.rb
|
165
|
+
- test/dummy/app/views/layouts/application.html.erb
|
166
|
+
- test/dummy/bin/bundle
|
167
|
+
- test/dummy/bin/rails
|
168
|
+
- test/dummy/bin/rake
|
169
|
+
- test/dummy/config/application.rb
|
170
|
+
- test/dummy/config/boot.rb
|
171
|
+
- test/dummy/config/database.yml
|
172
|
+
- test/dummy/config/environment.rb
|
173
|
+
- test/dummy/config/environments/development.rb
|
174
|
+
- test/dummy/config/environments/production.rb
|
175
|
+
- test/dummy/config/environments/test.rb
|
176
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
177
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
178
|
+
- test/dummy/config/initializers/inflections.rb
|
179
|
+
- test/dummy/config/initializers/mime_types.rb
|
180
|
+
- test/dummy/config/initializers/secret_token.rb
|
181
|
+
- test/dummy/config/initializers/session_store.rb
|
182
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
183
|
+
- test/dummy/config/locales/en.yml
|
184
|
+
- test/dummy/config/routes.rb
|
185
|
+
- test/dummy/config.ru
|
186
|
+
- test/dummy/db/development.sqlite3
|
187
|
+
- test/dummy/db/migrate/20130221043330_create_users.rb
|
188
|
+
- test/dummy/db/migrate/20130221043348_easy_contact_migration.rb
|
189
|
+
- test/dummy/db/schema.rb
|
190
|
+
- test/dummy/db/test.sqlite3
|
191
|
+
- test/dummy/log/development.log
|
192
|
+
- test/dummy/log/test.log
|
193
|
+
- test/dummy/public/404.html
|
194
|
+
- test/dummy/public/422.html
|
195
|
+
- test/dummy/public/500.html
|
196
|
+
- test/dummy/public/favicon.ico
|
197
|
+
- test/dummy/Rakefile
|
198
|
+
- test/dummy/README.rdoc
|
199
|
+
- test/dummy/test/models/easy_contact/entry_test.rb
|
200
|
+
- test/dummy/test/models/easy_contact/foo_test.rb
|
201
|
+
- test/easy_contact_test.rb
|
202
|
+
- test/test_helper.rb
|