hyalin 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (90) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +79 -0
  3. data/Rakefile +40 -0
  4. data/WTFP-LICENSE +13 -0
  5. data/app/assets/javascripts/hyalin/application.js +15 -0
  6. data/app/assets/javascripts/hyalin/messages.js +2 -0
  7. data/app/assets/stylesheets/hyalin/application.css +13 -0
  8. data/app/assets/stylesheets/hyalin/messages.css +4 -0
  9. data/app/controllers/hyalin/messages_controller.rb +39 -0
  10. data/app/controllers/hyalin_controller.rb +2 -0
  11. data/app/helpers/hyalin/application_helper.rb +4 -0
  12. data/app/helpers/hyalin/messages_helper.rb +4 -0
  13. data/app/mailers/hyalin/postman.rb +16 -0
  14. data/app/models/hyalin/message.rb +30 -0
  15. data/app/views/hyalin/messages/new.html.erb +3 -0
  16. data/app/views/hyalin/messages/show.html.erb +30 -0
  17. data/app/views/hyalin/postman/contact_email.html.erb +0 -0
  18. data/config/locales/contact.en.yml~ +10 -0
  19. data/config/locales/contact.pt-BR.yml~ +28 -0
  20. data/config/locales/hyalin.en.yml +12 -0
  21. data/config/locales/hyalin.pt-BR.yml +27 -0
  22. data/config/routes.rb +5 -0
  23. data/lib/hyalin/engine.rb +7 -0
  24. data/lib/hyalin/tasks/install.rb +31 -0
  25. data/lib/hyalin/tasks/templates/hyalin.rb +24 -0
  26. data/lib/hyalin/version.rb +3 -0
  27. data/lib/hyalin.rb +20 -0
  28. data/lib/tasks/hyalin_tasks.rake +20 -0
  29. data/test/contact_test.rb +7 -0
  30. data/test/dummy/README.rdoc +261 -0
  31. data/test/dummy/Rakefile +7 -0
  32. data/test/dummy/app/assets/javascripts/application.js +15 -0
  33. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  34. data/test/dummy/app/controllers/application_controller.rb +3 -0
  35. data/test/dummy/app/helpers/application_helper.rb +2 -0
  36. data/test/dummy/app/views/layouts/application.html.erb +16 -0
  37. data/test/dummy/config/application.rb +59 -0
  38. data/test/dummy/config/boot.rb +10 -0
  39. data/test/dummy/config/database.yml +25 -0
  40. data/test/dummy/config/environment.rb +5 -0
  41. data/test/dummy/config/environments/development.rb +37 -0
  42. data/test/dummy/config/environments/production.rb +67 -0
  43. data/test/dummy/config/environments/test.rb +37 -0
  44. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  45. data/test/dummy/config/initializers/hyalin.rb +25 -0
  46. data/test/dummy/config/initializers/inflections.rb +15 -0
  47. data/test/dummy/config/initializers/mime_types.rb +5 -0
  48. data/test/dummy/config/initializers/secret_token.rb +7 -0
  49. data/test/dummy/config/initializers/session_store.rb +8 -0
  50. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  51. data/test/dummy/config/locales/en.yml +5 -0
  52. data/test/dummy/config/locales/hyalin.en.yml +9 -0
  53. data/test/dummy/config/locales/hyalin.pt-BR.yml +9 -0
  54. data/test/dummy/config/locales/pt-BR.yml +5 -0
  55. data/test/dummy/config/routes.rb +4 -0
  56. data/test/dummy/config/smtp.rb +8 -0
  57. data/test/dummy/config.ru +4 -0
  58. data/test/dummy/db/development.sqlite3 +0 -0
  59. data/test/dummy/db/migrate/20121026125652_create_contact_messages.contact.rb +14 -0
  60. data/test/dummy/db/schema.rb +26 -0
  61. data/test/dummy/lib/templates/erb/scaffold/_form.html.erb +11 -0
  62. data/test/dummy/public/404.html +26 -0
  63. data/test/dummy/public/422.html +26 -0
  64. data/test/dummy/public/500.html +25 -0
  65. data/test/dummy/public/favicon.ico +0 -0
  66. data/test/dummy/script/rails +6 -0
  67. data/test/dummy/tmp/cache/assets/C76/CA0/sprockets%2F04492789a26cb109fd08120f32ff1307 +0 -0
  68. data/test/dummy/tmp/cache/assets/C8E/890/sprockets%2F676565443f9f41cca678de81659401a2 +0 -0
  69. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  70. data/test/dummy/tmp/cache/assets/D08/830/sprockets%2F54f039918b2063df314a6cc34baa67c8 +0 -0
  71. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  72. data/test/dummy/tmp/cache/assets/D33/940/sprockets%2F3b62cbdb213041c95fb39cdf9185c710 +0 -0
  73. data/test/dummy/tmp/cache/assets/D4A/830/sprockets%2Fa5ac31c959cef2f6b2d38059f8b61936 +0 -0
  74. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  75. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  76. data/test/dummy/tmp/cache/assets/D69/510/sprockets%2F7e7ed465001517b8b90c04c9a6fde3ab +0 -0
  77. data/test/dummy/tmp/cache/assets/D76/230/sprockets%2Fcd6768ac8264eb03f69076ed1e60ce5b +0 -0
  78. data/test/dummy/tmp/cache/assets/D84/4F0/sprockets%2F1081accccf1bec138c1331c5dec15096 +0 -0
  79. data/test/dummy/tmp/cache/assets/D8B/250/sprockets%2Fe7f5b520dc143452caa91f821a1add9a +0 -0
  80. data/test/dummy/tmp/cache/assets/D98/1B0/sprockets%2Fa3d192d7ac6810ffc5d4e5a56ec461a4 +0 -0
  81. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  82. data/test/dummy/tmp/cache/assets/E03/4F0/sprockets%2F5cd3dfa9f9e6b56078da24d2bd0a5f5f +0 -0
  83. data/test/dummy/tmp/cache/assets/E04/7D0/sprockets%2Fca37bd124077995fba27ee76caef4ced +0 -0
  84. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  85. data/test/dummy/tmp/cache/assets/E3A/370/sprockets%2Fdfa7fbe960d38bb9c1f36f4c0ad9a79e +0 -0
  86. data/test/dummy/tmp/cache/assets/E52/B60/sprockets%2Fe2c2b9e9cbad2cb83d6f1aea1946abf0 +0 -0
  87. data/test/integration/contact/message_test.rb +7 -0
  88. data/test/integration/navigation_test.rb +10 -0
  89. data/test/test_helper.rb +15 -0
  90. metadata +262 -0
@@ -0,0 +1,9 @@
1
+ en:
2
+ hyalin:
3
+ messages:
4
+ sent_success: Message delivered!
5
+ new: &hyalin-message
6
+ title: Hyalin Us
7
+ submit: Send Message
8
+ new_simple_form:
9
+ <<: *hyalin-message
@@ -0,0 +1,9 @@
1
+ pt-BR:
2
+ hyalin:
3
+ messages:
4
+ sent_success: Mensagem enviada!
5
+ new: &hyalin-message
6
+ title: Contate-nos
7
+ submit: Enviar mensagem
8
+ new_simple_form:
9
+ <<: *hyalin-message
@@ -0,0 +1,5 @@
1
+ pt-BR:
2
+ hyalin:
3
+ message:
4
+ new:
5
+ title: 'Contatar'
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+ root :to => 'hyalin/messages#new'
3
+ mount Hyalin::Engine => "/hyalin"
4
+ end
@@ -0,0 +1,8 @@
1
+ ActionMailer::Base.smtp_settings = {
2
+ :address => "dagmar.izap.com.br",
3
+ :port => 25,
4
+ :domain => "ipop.com.br",
5
+ :user_name => "izap@dagmar.izap.com.br",
6
+ :password => "izap",
7
+ :authentication => "plain"
8
+ }
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
Binary file
@@ -0,0 +1,14 @@
1
+ # This migration comes from hyalin (originally 20121024194042)
2
+ class CreateHyalinMessages < ActiveRecord::Migration
3
+ def change
4
+ create_table :hyalin_messages do |t|
5
+ t.string :name
6
+ t.string :email
7
+ t.string :subject
8
+ t.string :body
9
+ t.string :phone
10
+
11
+ t.timestamps
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,26 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20121026125652) do
15
+
16
+ create_table "hyalin_messages", :force => true do |t|
17
+ t.string "name"
18
+ t.string "email"
19
+ t.string "subject"
20
+ t.string "body"
21
+ t.string "phone"
22
+ t.datetime "created_at", :null => false
23
+ t.datetime "updated_at", :null => false
24
+ end
25
+
26
+ end
@@ -0,0 +1,11 @@
1
+ <%%= semantic_form_for @<%= singular_name %> do |f| %>
2
+ <%%= f.inputs do %>
3
+ <%- attributes.each do |attribute| -%>
4
+ <%%= f.input :<%= attribute.name %> %>
5
+ <%- end -%>
6
+ <%% end %>
7
+
8
+ <%%= f.actions do %>
9
+ <%%= f.action :submit, :as => :input %>
10
+ <%% end %>
11
+ <%% end %>
@@ -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,7 @@
1
+ require 'test_helper'
2
+
3
+ class MessageTest < ActionDispatch::IntegrationTest
4
+ # test "the truth" do
5
+ # assert true
6
+ # end
7
+ 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
metadata ADDED
@@ -0,0 +1,262 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hyalin
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Heitor Salazar
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-07-25 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.8
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.8
27
+ - !ruby/object:Gem::Dependency
28
+ name: combustion
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: rspec-rails
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: guard-rspec
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
+ - !ruby/object:Gem::Dependency
70
+ name: sqlite3
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
+ description: Integrated and overridable hyalin form generation
84
+ email:
85
+ - heitorsalazar@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - app/assets/javascripts/hyalin/application.js
91
+ - app/assets/javascripts/hyalin/messages.js
92
+ - app/assets/stylesheets/hyalin/application.css
93
+ - app/assets/stylesheets/hyalin/messages.css
94
+ - app/controllers/hyalin/messages_controller.rb
95
+ - app/controllers/hyalin_controller.rb
96
+ - app/helpers/hyalin/application_helper.rb
97
+ - app/helpers/hyalin/messages_helper.rb
98
+ - app/mailers/hyalin/postman.rb
99
+ - app/models/hyalin/message.rb
100
+ - app/views/hyalin/messages/new.html.erb
101
+ - app/views/hyalin/messages/show.html.erb
102
+ - app/views/hyalin/postman/contact_email.html.erb
103
+ - config/locales/contact.en.yml~
104
+ - config/locales/contact.pt-BR.yml~
105
+ - config/locales/hyalin.en.yml
106
+ - config/locales/hyalin.pt-BR.yml
107
+ - config/routes.rb
108
+ - lib/hyalin/engine.rb
109
+ - lib/hyalin/tasks/install.rb
110
+ - lib/hyalin/tasks/templates/hyalin.rb
111
+ - lib/hyalin/version.rb
112
+ - lib/hyalin.rb
113
+ - lib/tasks/hyalin_tasks.rake
114
+ - WTFP-LICENSE
115
+ - Rakefile
116
+ - README.md
117
+ - test/contact_test.rb
118
+ - test/dummy/app/assets/javascripts/application.js
119
+ - test/dummy/app/assets/stylesheets/application.css
120
+ - test/dummy/app/controllers/application_controller.rb
121
+ - test/dummy/app/helpers/application_helper.rb
122
+ - test/dummy/app/views/layouts/application.html.erb
123
+ - test/dummy/config/application.rb
124
+ - test/dummy/config/boot.rb
125
+ - test/dummy/config/database.yml
126
+ - test/dummy/config/environment.rb
127
+ - test/dummy/config/environments/development.rb
128
+ - test/dummy/config/environments/production.rb
129
+ - test/dummy/config/environments/test.rb
130
+ - test/dummy/config/initializers/backtrace_silencers.rb
131
+ - test/dummy/config/initializers/hyalin.rb
132
+ - test/dummy/config/initializers/inflections.rb
133
+ - test/dummy/config/initializers/mime_types.rb
134
+ - test/dummy/config/initializers/secret_token.rb
135
+ - test/dummy/config/initializers/session_store.rb
136
+ - test/dummy/config/initializers/wrap_parameters.rb
137
+ - test/dummy/config/locales/en.yml
138
+ - test/dummy/config/locales/hyalin.en.yml
139
+ - test/dummy/config/locales/hyalin.pt-BR.yml
140
+ - test/dummy/config/locales/pt-BR.yml
141
+ - test/dummy/config/routes.rb
142
+ - test/dummy/config/smtp.rb
143
+ - test/dummy/config.ru
144
+ - test/dummy/db/development.sqlite3
145
+ - test/dummy/db/migrate/20121026125652_create_contact_messages.contact.rb
146
+ - test/dummy/db/schema.rb
147
+ - test/dummy/lib/templates/erb/scaffold/_form.html.erb
148
+ - test/dummy/public/404.html
149
+ - test/dummy/public/422.html
150
+ - test/dummy/public/500.html
151
+ - test/dummy/public/favicon.ico
152
+ - test/dummy/Rakefile
153
+ - test/dummy/README.rdoc
154
+ - test/dummy/script/rails
155
+ - test/dummy/tmp/cache/assets/C76/CA0/sprockets%2F04492789a26cb109fd08120f32ff1307
156
+ - test/dummy/tmp/cache/assets/C8E/890/sprockets%2F676565443f9f41cca678de81659401a2
157
+ - test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
158
+ - test/dummy/tmp/cache/assets/D08/830/sprockets%2F54f039918b2063df314a6cc34baa67c8
159
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
160
+ - test/dummy/tmp/cache/assets/D33/940/sprockets%2F3b62cbdb213041c95fb39cdf9185c710
161
+ - test/dummy/tmp/cache/assets/D4A/830/sprockets%2Fa5ac31c959cef2f6b2d38059f8b61936
162
+ - test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
163
+ - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
164
+ - test/dummy/tmp/cache/assets/D69/510/sprockets%2F7e7ed465001517b8b90c04c9a6fde3ab
165
+ - test/dummy/tmp/cache/assets/D76/230/sprockets%2Fcd6768ac8264eb03f69076ed1e60ce5b
166
+ - test/dummy/tmp/cache/assets/D84/4F0/sprockets%2F1081accccf1bec138c1331c5dec15096
167
+ - test/dummy/tmp/cache/assets/D8B/250/sprockets%2Fe7f5b520dc143452caa91f821a1add9a
168
+ - test/dummy/tmp/cache/assets/D98/1B0/sprockets%2Fa3d192d7ac6810ffc5d4e5a56ec461a4
169
+ - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
170
+ - test/dummy/tmp/cache/assets/E03/4F0/sprockets%2F5cd3dfa9f9e6b56078da24d2bd0a5f5f
171
+ - test/dummy/tmp/cache/assets/E04/7D0/sprockets%2Fca37bd124077995fba27ee76caef4ced
172
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
173
+ - test/dummy/tmp/cache/assets/E3A/370/sprockets%2Fdfa7fbe960d38bb9c1f36f4c0ad9a79e
174
+ - test/dummy/tmp/cache/assets/E52/B60/sprockets%2Fe2c2b9e9cbad2cb83d6f1aea1946abf0
175
+ - test/integration/contact/message_test.rb
176
+ - test/integration/navigation_test.rb
177
+ - test/test_helper.rb
178
+ homepage:
179
+ licenses: []
180
+ metadata: {}
181
+ post_install_message:
182
+ rdoc_options: []
183
+ require_paths:
184
+ - lib
185
+ required_ruby_version: !ruby/object:Gem::Requirement
186
+ requirements:
187
+ - - '>='
188
+ - !ruby/object:Gem::Version
189
+ version: '0'
190
+ required_rubygems_version: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - '>='
193
+ - !ruby/object:Gem::Version
194
+ version: '0'
195
+ requirements: []
196
+ rubyforge_project:
197
+ rubygems_version: 2.0.3
198
+ signing_key:
199
+ specification_version: 4
200
+ summary: Simple contact form engine
201
+ test_files:
202
+ - test/contact_test.rb
203
+ - test/dummy/app/assets/javascripts/application.js
204
+ - test/dummy/app/assets/stylesheets/application.css
205
+ - test/dummy/app/controllers/application_controller.rb
206
+ - test/dummy/app/helpers/application_helper.rb
207
+ - test/dummy/app/views/layouts/application.html.erb
208
+ - test/dummy/config/application.rb
209
+ - test/dummy/config/boot.rb
210
+ - test/dummy/config/database.yml
211
+ - test/dummy/config/environment.rb
212
+ - test/dummy/config/environments/development.rb
213
+ - test/dummy/config/environments/production.rb
214
+ - test/dummy/config/environments/test.rb
215
+ - test/dummy/config/initializers/backtrace_silencers.rb
216
+ - test/dummy/config/initializers/hyalin.rb
217
+ - test/dummy/config/initializers/inflections.rb
218
+ - test/dummy/config/initializers/mime_types.rb
219
+ - test/dummy/config/initializers/secret_token.rb
220
+ - test/dummy/config/initializers/session_store.rb
221
+ - test/dummy/config/initializers/wrap_parameters.rb
222
+ - test/dummy/config/locales/en.yml
223
+ - test/dummy/config/locales/hyalin.en.yml
224
+ - test/dummy/config/locales/hyalin.pt-BR.yml
225
+ - test/dummy/config/locales/pt-BR.yml
226
+ - test/dummy/config/routes.rb
227
+ - test/dummy/config/smtp.rb
228
+ - test/dummy/config.ru
229
+ - test/dummy/db/development.sqlite3
230
+ - test/dummy/db/migrate/20121026125652_create_contact_messages.contact.rb
231
+ - test/dummy/db/schema.rb
232
+ - test/dummy/lib/templates/erb/scaffold/_form.html.erb
233
+ - test/dummy/public/404.html
234
+ - test/dummy/public/422.html
235
+ - test/dummy/public/500.html
236
+ - test/dummy/public/favicon.ico
237
+ - test/dummy/Rakefile
238
+ - test/dummy/README.rdoc
239
+ - test/dummy/script/rails
240
+ - test/dummy/tmp/cache/assets/C76/CA0/sprockets%2F04492789a26cb109fd08120f32ff1307
241
+ - test/dummy/tmp/cache/assets/C8E/890/sprockets%2F676565443f9f41cca678de81659401a2
242
+ - test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
243
+ - test/dummy/tmp/cache/assets/D08/830/sprockets%2F54f039918b2063df314a6cc34baa67c8
244
+ - test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
245
+ - test/dummy/tmp/cache/assets/D33/940/sprockets%2F3b62cbdb213041c95fb39cdf9185c710
246
+ - test/dummy/tmp/cache/assets/D4A/830/sprockets%2Fa5ac31c959cef2f6b2d38059f8b61936
247
+ - test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
248
+ - test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
249
+ - test/dummy/tmp/cache/assets/D69/510/sprockets%2F7e7ed465001517b8b90c04c9a6fde3ab
250
+ - test/dummy/tmp/cache/assets/D76/230/sprockets%2Fcd6768ac8264eb03f69076ed1e60ce5b
251
+ - test/dummy/tmp/cache/assets/D84/4F0/sprockets%2F1081accccf1bec138c1331c5dec15096
252
+ - test/dummy/tmp/cache/assets/D8B/250/sprockets%2Fe7f5b520dc143452caa91f821a1add9a
253
+ - test/dummy/tmp/cache/assets/D98/1B0/sprockets%2Fa3d192d7ac6810ffc5d4e5a56ec461a4
254
+ - test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
255
+ - test/dummy/tmp/cache/assets/E03/4F0/sprockets%2F5cd3dfa9f9e6b56078da24d2bd0a5f5f
256
+ - test/dummy/tmp/cache/assets/E04/7D0/sprockets%2Fca37bd124077995fba27ee76caef4ced
257
+ - test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
258
+ - test/dummy/tmp/cache/assets/E3A/370/sprockets%2Fdfa7fbe960d38bb9c1f36f4c0ad9a79e
259
+ - test/dummy/tmp/cache/assets/E52/B60/sprockets%2Fe2c2b9e9cbad2cb83d6f1aea1946abf0
260
+ - test/integration/contact/message_test.rb
261
+ - test/integration/navigation_test.rb
262
+ - test/test_helper.rb