contactify 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.
Files changed (100) hide show
  1. checksums.yaml +15 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +26 -0
  4. data/Rakefile +40 -0
  5. data/app/assets/javascripts/contactify/application.js +15 -0
  6. data/app/assets/javascripts/contactify/contacts.js +2 -0
  7. data/app/assets/stylesheets/contactify/application.css +13 -0
  8. data/app/assets/stylesheets/contactify/contacts.css +4 -0
  9. data/app/assets/stylesheets/scaffold.css +56 -0
  10. data/app/controllers/contactify/application_controller.rb +4 -0
  11. data/app/controllers/contactify/contacts_controller.rb +109 -0
  12. data/app/helpers/contactify/application_helper.rb +4 -0
  13. data/app/helpers/contactify/contacts_helper.rb +4 -0
  14. data/app/models/contactify/contact.rb +7 -0
  15. data/app/views/contactify/contacts/_form.html.erb +37 -0
  16. data/app/views/contactify/contacts/edit.html.erb +6 -0
  17. data/app/views/contactify/contacts/index.html.erb +29 -0
  18. data/app/views/contactify/contacts/new.html.erb +5 -0
  19. data/app/views/contactify/contacts/new_public.html.erb +45 -0
  20. data/app/views/contactify/contacts/show.html.erb +25 -0
  21. data/config/routes.rb +7 -0
  22. data/db/migrate/20130311025235_create_contactify_contacts.rb +12 -0
  23. data/lib/contactify.rb +4 -0
  24. data/lib/contactify/engine.rb +19 -0
  25. data/lib/contactify/version.rb +3 -0
  26. data/lib/generators/contactify/generate_views/generate_views_generator.rb +12 -0
  27. data/lib/generators/contactify/install/install_generator.rb +18 -0
  28. data/lib/generators/contactify/install/templates/contactify.yml +1 -0
  29. data/lib/generators/contactify/install/templates/recaptcha.rb +4 -0
  30. data/lib/tasks/contactify_tasks.rake +4 -0
  31. data/test/contactify_test.rb +7 -0
  32. data/test/dummy/README.rdoc +261 -0
  33. data/test/dummy/Rakefile +7 -0
  34. data/test/dummy/app/assets/javascripts/application.js +15 -0
  35. data/test/dummy/app/assets/javascripts/welcome.js +2 -0
  36. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  37. data/test/dummy/app/assets/stylesheets/welcome.css +4 -0
  38. data/test/dummy/app/controllers/application_controller.rb +3 -0
  39. data/test/dummy/app/controllers/welcome_controller.rb +4 -0
  40. data/test/dummy/app/helpers/application_helper.rb +2 -0
  41. data/test/dummy/app/helpers/welcome_helper.rb +2 -0
  42. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  43. data/test/dummy/app/views/welcome/index.html.erb +1 -0
  44. data/test/dummy/config.ru +4 -0
  45. data/test/dummy/config/application.rb +59 -0
  46. data/test/dummy/config/boot.rb +10 -0
  47. data/test/dummy/config/database.yml +29 -0
  48. data/test/dummy/config/environment.rb +5 -0
  49. data/test/dummy/config/environments/development.rb +37 -0
  50. data/test/dummy/config/environments/production.rb +67 -0
  51. data/test/dummy/config/environments/test.rb +37 -0
  52. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  53. data/test/dummy/config/initializers/inflections.rb +15 -0
  54. data/test/dummy/config/initializers/mime_types.rb +5 -0
  55. data/test/dummy/config/initializers/recaptcha.rb +4 -0
  56. data/test/dummy/config/initializers/secret_token.rb +7 -0
  57. data/test/dummy/config/initializers/session_store.rb +8 -0
  58. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  59. data/test/dummy/config/locales/en.yml +5 -0
  60. data/test/dummy/config/routes.rb +7 -0
  61. data/test/dummy/db/schema.rb +25 -0
  62. data/test/dummy/log/development.log +8207 -0
  63. data/test/dummy/public/404.html +26 -0
  64. data/test/dummy/public/422.html +26 -0
  65. data/test/dummy/public/500.html +25 -0
  66. data/test/dummy/public/favicon.ico +0 -0
  67. data/test/dummy/script/rails +6 -0
  68. data/test/dummy/test/functional/welcome_controller_test.rb +9 -0
  69. data/test/dummy/test/unit/helpers/welcome_helper_test.rb +4 -0
  70. data/test/dummy/tmp/cache/assets/C47/D80/sprockets%2F6570303092ee142462efd3115952d3e6 +0 -0
  71. data/test/dummy/tmp/cache/assets/C7B/190/sprockets%2F37b103f4623089af1456b90830fe941c +0 -0
  72. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  73. data/test/dummy/tmp/cache/assets/CE6/710/sprockets%2Fae161e57237d382658994f6aa36d2d0d +0 -0
  74. data/test/dummy/tmp/cache/assets/CEE/240/sprockets%2F9aa6e6be72c328f9717c5825db174690 +0 -0
  75. data/test/dummy/tmp/cache/assets/D06/1D0/sprockets%2F710eaa037fd91385d9f35bd510f1b454 +0 -0
  76. data/test/dummy/tmp/cache/assets/D13/C60/sprockets%2F2dedb8177c20286c4259c1d58c5646cc +0 -0
  77. data/test/dummy/tmp/cache/assets/D21/5D0/sprockets%2Fe2c4f946939f2d7d0b42d86383755cae +0 -0
  78. data/test/dummy/tmp/cache/assets/D23/960/sprockets%2Faef46413ffc04762e8c5b696997d2f33 +0 -0
  79. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  80. data/test/dummy/tmp/cache/assets/D3E/F40/sprockets%2F25a167c7563d6fe8ec6b13ec1ac09274 +0 -0
  81. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  82. data/test/dummy/tmp/cache/assets/D57/CB0/sprockets%2Fd08c623beb50800f7d0ba26cb7b0291e +0 -0
  83. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  84. data/test/dummy/tmp/cache/assets/D60/9C0/sprockets%2F262b91312974aad8ca04fc2c8c535dca +0 -0
  85. data/test/dummy/tmp/cache/assets/D77/540/sprockets%2F66754f48cc6dc131855fcd8f2eca0a66 +0 -0
  86. data/test/dummy/tmp/cache/assets/D94/780/sprockets%2F1f410501d18b45beeb43fe88be2fc6e1 +0 -0
  87. data/test/dummy/tmp/cache/assets/DA0/140/sprockets%2F25f485eb0a9f28b68e69ab1c0f57c0da +0 -0
  88. data/test/dummy/tmp/cache/assets/DBA/BF0/sprockets%2Ffac675858fff51d567c52de6d981a9ae +0 -0
  89. data/test/dummy/tmp/cache/assets/DCF/BD0/sprockets%2Fc8b53c6aae12e5a5be5fe8db5472a793 +0 -0
  90. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  91. data/test/dummy/tmp/cache/assets/E02/930/sprockets%2Fec83bf6c33e43fb6a5cf38a52df8c60e +0 -0
  92. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  93. data/test/dummy/tmp/cache/assets/E2A/CE0/sprockets%2F17bd5e2fd8a5fd2d834c9dadfd102c2f +0 -0
  94. data/test/fixtures/contactify/contacts.yml +13 -0
  95. data/test/functional/contactify/contacts_controller_test.rb +51 -0
  96. data/test/integration/navigation_test.rb +10 -0
  97. data/test/test_helper.rb +15 -0
  98. data/test/unit/contactify/contact_test.rb +9 -0
  99. data/test/unit/helpers/contactify/contacts_helper_test.rb +6 -0
  100. metadata +267 -0
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ class WelcomeControllerTest < ActionController::TestCase
4
+ test "should get index" do
5
+ get :index
6
+ assert_response :success
7
+ end
8
+
9
+ end
@@ -0,0 +1,4 @@
1
+ require 'test_helper'
2
+
3
+ class WelcomeHelperTest < ActionView::TestCase
4
+ end
@@ -0,0 +1,13 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ first_name: MyString
5
+ last_name: MyString
6
+ email: MyString
7
+ comment: MyText
8
+
9
+ two:
10
+ first_name: MyString
11
+ last_name: MyString
12
+ email: MyString
13
+ comment: MyText
@@ -0,0 +1,51 @@
1
+ require 'test_helper'
2
+
3
+ module Contactify
4
+ class ContactsControllerTest < ActionController::TestCase
5
+ setup do
6
+ @contact = contacts(:one)
7
+ end
8
+
9
+ test "should get index" do
10
+ get :index
11
+ assert_response :success
12
+ assert_not_nil assigns(:contacts)
13
+ end
14
+
15
+ test "should get new" do
16
+ get :new
17
+ assert_response :success
18
+ end
19
+
20
+ test "should create contact" do
21
+ assert_difference('Contact.count') do
22
+ post :create, contact: { comment: @contact.comment, email: @contact.email, first_name: @contact.first_name, last_name: @contact.last_name }
23
+ end
24
+
25
+ assert_redirected_to contact_path(assigns(:contact))
26
+ end
27
+
28
+ test "should show contact" do
29
+ get :show, id: @contact
30
+ assert_response :success
31
+ end
32
+
33
+ test "should get edit" do
34
+ get :edit, id: @contact
35
+ assert_response :success
36
+ end
37
+
38
+ test "should update contact" do
39
+ put :update, id: @contact, contact: { comment: @contact.comment, email: @contact.email, first_name: @contact.first_name, last_name: @contact.last_name }
40
+ assert_redirected_to contact_path(assigns(:contact))
41
+ end
42
+
43
+ test "should destroy contact" do
44
+ assert_difference('Contact.count', -1) do
45
+ delete :destroy, id: @contact
46
+ end
47
+
48
+ assert_redirected_to contacts_path
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ fixtures :all
5
+
6
+ # test "the truth" do
7
+ # assert true
8
+ # end
9
+ end
10
+
@@ -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
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module Contactify
4
+ class ContactTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,6 @@
1
+ require 'test_helper'
2
+
3
+ module Contactify
4
+ class ContactsHelperTest < ActionView::TestCase
5
+ end
6
+ end
metadata ADDED
@@ -0,0 +1,267 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: contactify
3
+ version: !ruby/object:Gem::Version
4
+ version: '0.1'
5
+ platform: ruby
6
+ authors:
7
+ - Pablo Marti
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-05-09 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: 3.2.12
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 3.2.12
27
+ - !ruby/object:Gem::Dependency
28
+ name: recaptcha
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: 0.3.5
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: 0.3.5
41
+ - !ruby/object:Gem::Dependency
42
+ name: mysql2
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: jquery-rails
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ! '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: Builds the form to get contacts on your site using reCaptcha and the
70
+ Rails resources for managing your contacts.
71
+ email:
72
+ - pablo.marti89@gmail.com
73
+ executables: []
74
+ extensions: []
75
+ extra_rdoc_files: []
76
+ files:
77
+ - app/views/contactify/contacts/new.html.erb
78
+ - app/views/contactify/contacts/_form.html.erb
79
+ - app/views/contactify/contacts/edit.html.erb
80
+ - app/views/contactify/contacts/index.html.erb
81
+ - app/views/contactify/contacts/new_public.html.erb
82
+ - app/views/contactify/contacts/show.html.erb
83
+ - app/assets/javascripts/contactify/application.js
84
+ - app/assets/javascripts/contactify/contacts.js
85
+ - app/assets/stylesheets/scaffold.css
86
+ - app/assets/stylesheets/contactify/contacts.css
87
+ - app/assets/stylesheets/contactify/application.css
88
+ - app/controllers/contactify/application_controller.rb
89
+ - app/controllers/contactify/contacts_controller.rb
90
+ - app/models/contactify/contact.rb
91
+ - app/helpers/contactify/contacts_helper.rb
92
+ - app/helpers/contactify/application_helper.rb
93
+ - config/routes.rb
94
+ - db/migrate/20130311025235_create_contactify_contacts.rb
95
+ - lib/generators/contactify/generate_views/generate_views_generator.rb
96
+ - lib/generators/contactify/install/templates/contactify.yml
97
+ - lib/generators/contactify/install/templates/recaptcha.rb
98
+ - lib/generators/contactify/install/install_generator.rb
99
+ - lib/contactify.rb
100
+ - lib/contactify/version.rb
101
+ - lib/contactify/engine.rb
102
+ - lib/tasks/contactify_tasks.rake
103
+ - MIT-LICENSE
104
+ - Rakefile
105
+ - README.rdoc
106
+ - test/unit/helpers/contactify/contacts_helper_test.rb
107
+ - test/unit/contactify/contact_test.rb
108
+ - test/integration/navigation_test.rb
109
+ - test/dummy/public/500.html
110
+ - test/dummy/public/404.html
111
+ - test/dummy/public/favicon.ico
112
+ - test/dummy/public/422.html
113
+ - test/dummy/app/views/welcome/index.html.erb
114
+ - test/dummy/app/views/layouts/application.html.erb
115
+ - test/dummy/app/assets/javascripts/welcome.js
116
+ - test/dummy/app/assets/javascripts/application.js
117
+ - test/dummy/app/assets/stylesheets/welcome.css
118
+ - test/dummy/app/assets/stylesheets/application.css
119
+ - test/dummy/app/controllers/application_controller.rb
120
+ - test/dummy/app/controllers/welcome_controller.rb
121
+ - test/dummy/app/helpers/welcome_helper.rb
122
+ - test/dummy/app/helpers/application_helper.rb
123
+ - test/dummy/db/schema.rb
124
+ - test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
125
+ - test/dummy/tmp/cache/assets/DCF/BD0/sprockets%2Fc8b53c6aae12e5a5be5fe8db5472a793
126
+ - test/dummy/tmp/cache/assets/DA0/140/sprockets%2F25f485eb0a9f28b68e69ab1c0f57c0da
127
+ - test/dummy/tmp/cache/assets/D77/540/sprockets%2F66754f48cc6dc131855fcd8f2eca0a66
128
+ - test/dummy/tmp/cache/assets/E02/930/sprockets%2Fec83bf6c33e43fb6a5cf38a52df8c60e
129
+ - test/dummy/tmp/cache/assets/D13/C60/sprockets%2F2dedb8177c20286c4259c1d58c5646cc
130
+ - test/dummy/tmp/cache/assets/D21/5D0/sprockets%2Fe2c4f946939f2d7d0b42d86383755cae
131
+ - test/dummy/tmp/cache/assets/DBA/BF0/sprockets%2Ffac675858fff51d567c52de6d981a9ae
132
+ - test/dummy/tmp/cache/assets/C7B/190/sprockets%2F37b103f4623089af1456b90830fe941c
133
+ - test/dummy/tmp/cache/assets/CE6/710/sprockets%2Fae161e57237d382658994f6aa36d2d0d
134
+ - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
135
+ - test/dummy/tmp/cache/assets/D60/9C0/sprockets%2F262b91312974aad8ca04fc2c8c535dca
136
+ - test/dummy/tmp/cache/assets/E2A/CE0/sprockets%2F17bd5e2fd8a5fd2d834c9dadfd102c2f
137
+ - test/dummy/tmp/cache/assets/C47/D80/sprockets%2F6570303092ee142462efd3115952d3e6
138
+ - test/dummy/tmp/cache/assets/D57/CB0/sprockets%2Fd08c623beb50800f7d0ba26cb7b0291e
139
+ - test/dummy/tmp/cache/assets/D94/780/sprockets%2F1f410501d18b45beeb43fe88be2fc6e1
140
+ - test/dummy/tmp/cache/assets/D23/960/sprockets%2Faef46413ffc04762e8c5b696997d2f33
141
+ - test/dummy/tmp/cache/assets/D06/1D0/sprockets%2F710eaa037fd91385d9f35bd510f1b454
142
+ - test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
143
+ - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
144
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
145
+ - test/dummy/tmp/cache/assets/D3E/F40/sprockets%2F25a167c7563d6fe8ec6b13ec1ac09274
146
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
147
+ - test/dummy/tmp/cache/assets/CEE/240/sprockets%2F9aa6e6be72c328f9717c5825db174690
148
+ - test/dummy/test/unit/helpers/welcome_helper_test.rb
149
+ - test/dummy/test/functional/welcome_controller_test.rb
150
+ - test/dummy/config.ru
151
+ - test/dummy/Rakefile
152
+ - test/dummy/config/locales/en.yml
153
+ - test/dummy/config/initializers/mime_types.rb
154
+ - test/dummy/config/initializers/session_store.rb
155
+ - test/dummy/config/initializers/inflections.rb
156
+ - test/dummy/config/initializers/recaptcha.rb
157
+ - test/dummy/config/initializers/secret_token.rb
158
+ - test/dummy/config/initializers/wrap_parameters.rb
159
+ - test/dummy/config/initializers/backtrace_silencers.rb
160
+ - test/dummy/config/database.yml
161
+ - test/dummy/config/routes.rb
162
+ - test/dummy/config/environments/production.rb
163
+ - test/dummy/config/environments/development.rb
164
+ - test/dummy/config/environments/test.rb
165
+ - test/dummy/config/boot.rb
166
+ - test/dummy/config/environment.rb
167
+ - test/dummy/config/application.rb
168
+ - test/dummy/script/rails
169
+ - test/dummy/README.rdoc
170
+ - test/dummy/log/development.log
171
+ - test/test_helper.rb
172
+ - test/functional/contactify/contacts_controller_test.rb
173
+ - test/fixtures/contactify/contacts.yml
174
+ - test/contactify_test.rb
175
+ homepage: https://github.com/pablomarti/contactify
176
+ licenses: []
177
+ metadata: {}
178
+ post_install_message:
179
+ rdoc_options: []
180
+ require_paths:
181
+ - lib
182
+ required_ruby_version: !ruby/object:Gem::Requirement
183
+ requirements:
184
+ - - ! '>='
185
+ - !ruby/object:Gem::Version
186
+ version: '0'
187
+ required_rubygems_version: !ruby/object:Gem::Requirement
188
+ requirements:
189
+ - - ! '>='
190
+ - !ruby/object:Gem::Version
191
+ version: '0'
192
+ requirements: []
193
+ rubyforge_project:
194
+ rubygems_version: 2.0.3
195
+ signing_key:
196
+ specification_version: 4
197
+ summary: Manage your contacts with reCaptcha.
198
+ test_files:
199
+ - test/unit/helpers/contactify/contacts_helper_test.rb
200
+ - test/unit/contactify/contact_test.rb
201
+ - test/integration/navigation_test.rb
202
+ - test/dummy/public/500.html
203
+ - test/dummy/public/404.html
204
+ - test/dummy/public/favicon.ico
205
+ - test/dummy/public/422.html
206
+ - test/dummy/app/views/welcome/index.html.erb
207
+ - test/dummy/app/views/layouts/application.html.erb
208
+ - test/dummy/app/assets/javascripts/welcome.js
209
+ - test/dummy/app/assets/javascripts/application.js
210
+ - test/dummy/app/assets/stylesheets/welcome.css
211
+ - test/dummy/app/assets/stylesheets/application.css
212
+ - test/dummy/app/controllers/application_controller.rb
213
+ - test/dummy/app/controllers/welcome_controller.rb
214
+ - test/dummy/app/helpers/welcome_helper.rb
215
+ - test/dummy/app/helpers/application_helper.rb
216
+ - test/dummy/db/schema.rb
217
+ - test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
218
+ - test/dummy/tmp/cache/assets/DCF/BD0/sprockets%2Fc8b53c6aae12e5a5be5fe8db5472a793
219
+ - test/dummy/tmp/cache/assets/DA0/140/sprockets%2F25f485eb0a9f28b68e69ab1c0f57c0da
220
+ - test/dummy/tmp/cache/assets/D77/540/sprockets%2F66754f48cc6dc131855fcd8f2eca0a66
221
+ - test/dummy/tmp/cache/assets/E02/930/sprockets%2Fec83bf6c33e43fb6a5cf38a52df8c60e
222
+ - test/dummy/tmp/cache/assets/D13/C60/sprockets%2F2dedb8177c20286c4259c1d58c5646cc
223
+ - test/dummy/tmp/cache/assets/D21/5D0/sprockets%2Fe2c4f946939f2d7d0b42d86383755cae
224
+ - test/dummy/tmp/cache/assets/DBA/BF0/sprockets%2Ffac675858fff51d567c52de6d981a9ae
225
+ - test/dummy/tmp/cache/assets/C7B/190/sprockets%2F37b103f4623089af1456b90830fe941c
226
+ - test/dummy/tmp/cache/assets/CE6/710/sprockets%2Fae161e57237d382658994f6aa36d2d0d
227
+ - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
228
+ - test/dummy/tmp/cache/assets/D60/9C0/sprockets%2F262b91312974aad8ca04fc2c8c535dca
229
+ - test/dummy/tmp/cache/assets/E2A/CE0/sprockets%2F17bd5e2fd8a5fd2d834c9dadfd102c2f
230
+ - test/dummy/tmp/cache/assets/C47/D80/sprockets%2F6570303092ee142462efd3115952d3e6
231
+ - test/dummy/tmp/cache/assets/D57/CB0/sprockets%2Fd08c623beb50800f7d0ba26cb7b0291e
232
+ - test/dummy/tmp/cache/assets/D94/780/sprockets%2F1f410501d18b45beeb43fe88be2fc6e1
233
+ - test/dummy/tmp/cache/assets/D23/960/sprockets%2Faef46413ffc04762e8c5b696997d2f33
234
+ - test/dummy/tmp/cache/assets/D06/1D0/sprockets%2F710eaa037fd91385d9f35bd510f1b454
235
+ - test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
236
+ - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
237
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
238
+ - test/dummy/tmp/cache/assets/D3E/F40/sprockets%2F25a167c7563d6fe8ec6b13ec1ac09274
239
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
240
+ - test/dummy/tmp/cache/assets/CEE/240/sprockets%2F9aa6e6be72c328f9717c5825db174690
241
+ - test/dummy/test/unit/helpers/welcome_helper_test.rb
242
+ - test/dummy/test/functional/welcome_controller_test.rb
243
+ - test/dummy/config.ru
244
+ - test/dummy/Rakefile
245
+ - test/dummy/config/locales/en.yml
246
+ - test/dummy/config/initializers/mime_types.rb
247
+ - test/dummy/config/initializers/session_store.rb
248
+ - test/dummy/config/initializers/inflections.rb
249
+ - test/dummy/config/initializers/recaptcha.rb
250
+ - test/dummy/config/initializers/secret_token.rb
251
+ - test/dummy/config/initializers/wrap_parameters.rb
252
+ - test/dummy/config/initializers/backtrace_silencers.rb
253
+ - test/dummy/config/database.yml
254
+ - test/dummy/config/routes.rb
255
+ - test/dummy/config/environments/production.rb
256
+ - test/dummy/config/environments/development.rb
257
+ - test/dummy/config/environments/test.rb
258
+ - test/dummy/config/boot.rb
259
+ - test/dummy/config/environment.rb
260
+ - test/dummy/config/application.rb
261
+ - test/dummy/script/rails
262
+ - test/dummy/README.rdoc
263
+ - test/dummy/log/development.log
264
+ - test/test_helper.rb
265
+ - test/functional/contactify/contacts_controller_test.rb
266
+ - test/fixtures/contactify/contacts.yml
267
+ - test/contactify_test.rb