isotope_contacts 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.
Files changed (74) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +37 -0
  3. data/Rakefile +39 -0
  4. data/app/assets/javascripts/isotope_contacts/application.js +9 -0
  5. data/app/assets/stylesheets/isotope_contacts/application.css +7 -0
  6. data/app/assets/stylesheets/isotope_contacts/screen.css.scss +24 -0
  7. data/app/controllers/isotope_contacts/application_controller.rb +4 -0
  8. data/app/controllers/isotope_contacts/contacts_controller.rb +53 -0
  9. data/app/controllers/isotope_contacts/emails_controller.rb +51 -0
  10. data/app/controllers/isotope_contacts/phone_numbers_controller.rb +51 -0
  11. data/app/models/isotope_contacts/contact.rb +15 -0
  12. data/app/models/isotope_contacts/email.rb +11 -0
  13. data/app/models/isotope_contacts/phone_number.rb +11 -0
  14. data/app/views/isotope_contacts/contacts/_form.html.haml +7 -0
  15. data/app/views/isotope_contacts/contacts/edit.html.haml +2 -0
  16. data/app/views/isotope_contacts/contacts/index.html.haml +13 -0
  17. data/app/views/isotope_contacts/contacts/new.html.haml +2 -0
  18. data/app/views/isotope_contacts/contacts/show.html.haml +40 -0
  19. data/app/views/isotope_contacts/emails/_form.html.haml +7 -0
  20. data/app/views/isotope_contacts/emails/edit.html.haml +2 -0
  21. data/app/views/isotope_contacts/emails/new.html.haml +2 -0
  22. data/app/views/isotope_contacts/phone_numbers/_form.html.haml +7 -0
  23. data/app/views/isotope_contacts/phone_numbers/edit.html.haml +2 -0
  24. data/app/views/isotope_contacts/phone_numbers/new.html.haml +2 -0
  25. data/app/views/layouts/isotope_contacts/application.html.haml +21 -0
  26. data/config/routes.rb +7 -0
  27. data/db/migrate/20120106173507_create_contacts.rb +8 -0
  28. data/db/migrate/20120106210546_create_phone_numbers.rb +9 -0
  29. data/db/migrate/20120106213612_create_emails.rb +9 -0
  30. data/lib/isotope_contacts.rb +10 -0
  31. data/lib/isotope_contacts/engine.rb +5 -0
  32. data/lib/isotope_contacts/version.rb +3 -0
  33. data/lib/tasks/isotope_contacts_tasks.rake +4 -0
  34. data/test/dummy/Rakefile +7 -0
  35. data/test/dummy/app/assets/javascripts/application.js +9 -0
  36. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  37. data/test/dummy/app/controllers/application_controller.rb +3 -0
  38. data/test/dummy/app/helpers/application_helper.rb +2 -0
  39. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  40. data/test/dummy/config.ru +4 -0
  41. data/test/dummy/config/application.rb +45 -0
  42. data/test/dummy/config/boot.rb +10 -0
  43. data/test/dummy/config/database.yml +25 -0
  44. data/test/dummy/config/environment.rb +5 -0
  45. data/test/dummy/config/environments/development.rb +30 -0
  46. data/test/dummy/config/environments/production.rb +60 -0
  47. data/test/dummy/config/environments/test.rb +39 -0
  48. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  49. data/test/dummy/config/initializers/inflections.rb +10 -0
  50. data/test/dummy/config/initializers/mime_types.rb +5 -0
  51. data/test/dummy/config/initializers/secret_token.rb +7 -0
  52. data/test/dummy/config/initializers/session_store.rb +8 -0
  53. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  54. data/test/dummy/config/locales/en.yml +5 -0
  55. data/test/dummy/config/routes.rb +3 -0
  56. data/test/dummy/db/development.sqlite3 +0 -0
  57. data/test/dummy/db/schema.rb +33 -0
  58. data/test/dummy/db/test.sqlite3 +0 -0
  59. data/test/dummy/log/development.log +31 -0
  60. data/test/dummy/log/test.log +275 -0
  61. data/test/dummy/public/404.html +26 -0
  62. data/test/dummy/public/422.html +26 -0
  63. data/test/dummy/public/500.html +26 -0
  64. data/test/dummy/public/favicon.ico +0 -0
  65. data/test/dummy/script/rails +6 -0
  66. data/test/integration/isotope_contacts/contacts_test.rb +56 -0
  67. data/test/integration/isotope_contacts/emails_test.rb +29 -0
  68. data/test/integration/isotope_contacts/phone_numbers_test.rb +29 -0
  69. data/test/isotope_contacts_test.rb +7 -0
  70. data/test/minitest_helper.rb +37 -0
  71. data/test/support/factories.rb +16 -0
  72. data/test/unit/isotope_contacts/contact_test.rb +26 -0
  73. data/test/unit/isotope_contacts/phone_number_test.rb +31 -0
  74. metadata +296 -0
@@ -0,0 +1,56 @@
1
+ require 'minitest_helper'
2
+
3
+ describe 'Contact integration' do
4
+ it 'shows a list of contacts when I go to index' do
5
+ contact1 = FactoryGirl.create :contact, first_name: 'Reginald'
6
+ contact2 = FactoryGirl.create :contact, first_name: 'Arthur'
7
+ visit "/isotope_contacts/contacts"
8
+ within '.contacts-module' do
9
+ page.must_have_content('Reginald')
10
+ page.must_have_content('Arthur')
11
+ end
12
+ end
13
+
14
+ it 'shows me the contact when I go to show' do
15
+ contact = FactoryGirl.create :contact, first_name: 'Reginald'
16
+ visit "/isotope_contacts/contacts/#{contact.id}"
17
+ within '.contact-module' do
18
+ page.must_have_content 'Reginald'
19
+ page.must_have_selector 'a[rel=edit-contact]'
20
+ page.must_have_selector 'a[rel=add-phone-number]'
21
+ page.must_have_selector 'a[rel=add-email-address]'
22
+ end
23
+ end
24
+
25
+ it 'creates a contact on post' do
26
+ attrs = FactoryGirl.build(:contact).attributes
27
+ page.driver.follow :post, "/isotope_contacts/contacts", contact: attrs
28
+ IsotopeContacts::Contact.count.must_equal 1
29
+ visit "/isotope_contacts/contacts/#{IsotopeContacts::Contact.last.id}"
30
+ end
31
+
32
+ it 'destroys a contact on delete' do
33
+ contact = FactoryGirl.create :contact, first_name: 'Reginald'
34
+ page.driver.follow :delete, "/isotope_contacts/contacts/#{contact.id}"
35
+ IsotopeContacts::Contact.find_by_id(contact.id).must_equal nil
36
+ end
37
+
38
+ it 'shows me the new contact form on new' do
39
+ visit "/isotope_contacts/contacts/new"
40
+ within '.contact-form-module form' do
41
+ page.must_have_selector 'input#contact_first_name'
42
+ page.must_have_selector 'input#contact_last_name'
43
+ page.must_have_selector 'input[type=submit]'
44
+ end
45
+ end
46
+
47
+ it 'shows me the edit contact form on edit' do
48
+ contact = FactoryGirl.create :contact, first_name: 'Reginald'
49
+ visit "/isotope_contacts/contacts/#{contact.id}/edit"
50
+ within '.contact-form-module form' do
51
+ page.must_have_selector 'input#contact_first_name'
52
+ page.must_have_selector 'input#contact_last_name'
53
+ page.must_have_selector 'input[type=submit]'
54
+ end
55
+ end
56
+ end
@@ -0,0 +1,29 @@
1
+ require 'minitest_helper'
2
+
3
+ describe 'Email integration' do
4
+ before do
5
+ @contact = Factory(:contact)
6
+ end
7
+
8
+ it 'creates a email on post' do
9
+ attrs = FactoryGirl.build(:email).attributes
10
+ page.driver.follow :post, "/isotope_contacts/contacts/#{@contact.id}/emails", email: attrs
11
+ IsotopeContacts::Email.count.must_equal 1
12
+ end
13
+
14
+ it 'shows me the edit email form on edit' do
15
+ email = FactoryGirl.create :email
16
+ visit "/isotope_contacts/contacts/#{email.contact.id}/emails/#{email.id}/edit"
17
+ within '.email-form-module form' do
18
+ page.must_have_selector 'input#email_name'
19
+ page.must_have_selector 'input#email_email'
20
+ page.must_have_selector 'input[type=submit]'
21
+ end
22
+ end
23
+
24
+ it 'destroys a email on delete' do
25
+ email = FactoryGirl.create :email
26
+ page.driver.follow :delete, "/isotope_contacts/contacts/#{email.contact.id}/emails/#{email.id}"
27
+ IsotopeContacts::Email.find_by_id(email.id).must_equal nil
28
+ end
29
+ end
@@ -0,0 +1,29 @@
1
+ require 'minitest_helper'
2
+
3
+ describe 'Phone Number integration' do
4
+ before do
5
+ @contact = Factory(:contact)
6
+ end
7
+
8
+ it 'creates a phone number on post' do
9
+ attrs = FactoryGirl.build(:phone_number).attributes
10
+ page.driver.follow :post, "/isotope_contacts/contacts/#{@contact.id}/phone_numbers", phone_number: attrs
11
+ IsotopeContacts::PhoneNumber.count.must_equal 1
12
+ end
13
+
14
+ it 'shows me the edit phone number form on edit' do
15
+ phone_number = FactoryGirl.create :phone_number
16
+ visit "/isotope_contacts/contacts/#{phone_number.contact.id}/phone_numbers/#{phone_number.id}/edit"
17
+ within '.phone-number-form-module form' do
18
+ page.must_have_selector 'input#phone_number_name'
19
+ page.must_have_selector 'input#phone_number_number'
20
+ page.must_have_selector 'input[type=submit]'
21
+ end
22
+ end
23
+
24
+ it 'destroys a phone number on delete' do
25
+ phone_number = FactoryGirl.create :phone_number
26
+ page.driver.follow :delete, "/isotope_contacts/contacts/#{phone_number.contact.id}/phone_numbers/#{phone_number.id}"
27
+ IsotopeContacts::PhoneNumber.find_by_id(phone_number.id).must_equal nil
28
+ end
29
+ end
@@ -0,0 +1,7 @@
1
+ require 'minitest_helper'
2
+
3
+ class IsotopeContactsTest < ActiveSupport::TestCase
4
+ test "module exists" do
5
+ assert_kind_of Module, IsotopeContacts
6
+ end
7
+ end
@@ -0,0 +1,37 @@
1
+ require "minitest/autorun"
2
+ require "minitest/rails"
3
+ #require "turn"
4
+ require 'database_cleaner'
5
+ require 'factory_girl'
6
+ require 'ruby-debug'
7
+
8
+ ENV["RAILS_ENV"] = "test"
9
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
10
+
11
+ require 'capybara/rails'
12
+ require 'capybara_minitest_spec'
13
+
14
+ # Load support files
15
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
16
+
17
+ # If description name ends with 'integration', use this RequestSpec class.
18
+ # It has all the integration test goodies.
19
+ class RequestSpec < MiniTest::Spec
20
+ include Rails.application.routes.url_helpers
21
+ include Capybara::DSL
22
+ end
23
+
24
+ MiniTest::Spec.register_spec_type /integration$/i, RequestSpec
25
+
26
+ # Database cleaner.
27
+ DatabaseCleaner.strategy = :truncation
28
+
29
+ class MiniTest::Spec
30
+ before :each do
31
+ DatabaseCleaner.clean
32
+ end
33
+ end
34
+
35
+ class MiniTest::Rails::Spec
36
+ # Add methods to be used by all specs here...
37
+ end
@@ -0,0 +1,16 @@
1
+ FactoryGirl.define do
2
+ factory :contact, class: IsotopeContacts::Contact do
3
+ first_name 'Test'
4
+ last_name 'Contact'
5
+ end
6
+ factory :phone_number, class: IsotopeContacts::PhoneNumber do
7
+ number '2055551212'
8
+ name 'Home'
9
+ association :contact
10
+ end
11
+ factory :email, class: IsotopeContacts::Email do
12
+ email 'josh@isotope11.com'
13
+ name 'Home'
14
+ association :contact
15
+ end
16
+ end
@@ -0,0 +1,26 @@
1
+ require "minitest_helper"
2
+
3
+ describe IsotopeContacts::Contact do
4
+ subject do
5
+ IsotopeContacts::Contact.new first_name: 'foo', last_name: 'bar'
6
+ end
7
+
8
+ describe "with valid attributes" do
9
+ it "should be valid" do
10
+ subject.valid?.must_equal true
11
+ end
12
+ end
13
+
14
+ describe "without first_name" do
15
+ it "should not be valid" do
16
+ subject.first_name = nil
17
+ subject.valid?.wont_equal true
18
+ end
19
+ end
20
+
21
+ describe "full_name" do
22
+ it "should cat first and last name" do
23
+ subject.full_name.must_equal 'foo bar'
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,31 @@
1
+ require 'minitest_helper'
2
+
3
+ describe IsotopeContacts::PhoneNumber do
4
+ subject do
5
+ IsotopeContacts::PhoneNumber.new number: '2055551212', name: 'Home'
6
+ end
7
+
8
+ describe "with valid attributes" do
9
+ it "should be valid" do
10
+ subject.valid?.must_equal true
11
+ end
12
+ end
13
+
14
+ describe "without number" do
15
+ it "should not be valid" do
16
+ subject.number = nil
17
+ subject.valid?.wont_equal true
18
+ end
19
+ end
20
+
21
+ describe "without name" do
22
+ it "should not be valid" do
23
+ subject.name = nil
24
+ subject.valid?.wont_equal true
25
+ end
26
+ end
27
+
28
+ it 'should respond to to_s' do
29
+ subject.to_s.must_equal "#{subject.name}: #{subject.number}"
30
+ end
31
+ end
metadata ADDED
@@ -0,0 +1,296 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: isotope_contacts
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Josh Adams
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-02-06 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: &27222740 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 3.1.3
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *27222740
25
+ - !ruby/object:Gem::Dependency
26
+ name: bootstrap-sass
27
+ requirement: &27221820 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: *27221820
36
+ - !ruby/object:Gem::Dependency
37
+ name: formtastic-bootstrap
38
+ requirement: &27220860 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ! '>='
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ type: :runtime
45
+ prerelease: false
46
+ version_requirements: *27220860
47
+ - !ruby/object:Gem::Dependency
48
+ name: haml
49
+ requirement: &27220040 !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ type: :runtime
56
+ prerelease: false
57
+ version_requirements: *27220040
58
+ - !ruby/object:Gem::Dependency
59
+ name: meta_search
60
+ requirement: &27219220 !ruby/object:Gem::Requirement
61
+ none: false
62
+ requirements:
63
+ - - ! '>='
64
+ - !ruby/object:Gem::Version
65
+ version: '0'
66
+ type: :runtime
67
+ prerelease: false
68
+ version_requirements: *27219220
69
+ - !ruby/object:Gem::Dependency
70
+ name: sqlite3
71
+ requirement: &27218360 !ruby/object:Gem::Requirement
72
+ none: false
73
+ requirements:
74
+ - - ! '>='
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ type: :development
78
+ prerelease: false
79
+ version_requirements: *27218360
80
+ - !ruby/object:Gem::Dependency
81
+ name: minitest-rails
82
+ requirement: &27212920 !ruby/object:Gem::Requirement
83
+ none: false
84
+ requirements:
85
+ - - ! '>='
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ type: :development
89
+ prerelease: false
90
+ version_requirements: *27212920
91
+ - !ruby/object:Gem::Dependency
92
+ name: factory_girl
93
+ requirement: &27212020 !ruby/object:Gem::Requirement
94
+ none: false
95
+ requirements:
96
+ - - ! '>='
97
+ - !ruby/object:Gem::Version
98
+ version: '0'
99
+ type: :development
100
+ prerelease: false
101
+ version_requirements: *27212020
102
+ - !ruby/object:Gem::Dependency
103
+ name: capybara
104
+ requirement: &27211200 !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ! '>='
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ type: :development
111
+ prerelease: false
112
+ version_requirements: *27211200
113
+ - !ruby/object:Gem::Dependency
114
+ name: capybara_minitest_spec
115
+ requirement: &27210300 !ruby/object:Gem::Requirement
116
+ none: false
117
+ requirements:
118
+ - - ! '>='
119
+ - !ruby/object:Gem::Version
120
+ version: '0'
121
+ type: :development
122
+ prerelease: false
123
+ version_requirements: *27210300
124
+ - !ruby/object:Gem::Dependency
125
+ name: database_cleaner
126
+ requirement: &27209460 !ruby/object:Gem::Requirement
127
+ none: false
128
+ requirements:
129
+ - - ! '>='
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: *27209460
135
+ - !ruby/object:Gem::Dependency
136
+ name: ruby-debug19
137
+ requirement: &27208660 !ruby/object:Gem::Requirement
138
+ none: false
139
+ requirements:
140
+ - - ! '>='
141
+ - !ruby/object:Gem::Version
142
+ version: '0'
143
+ type: :development
144
+ prerelease: false
145
+ version_requirements: *27208660
146
+ description: A Rails 3 engine for contact management.
147
+ email:
148
+ - josh@isotope11.com
149
+ executables: []
150
+ extensions: []
151
+ extra_rdoc_files: []
152
+ files:
153
+ - app/views/isotope_contacts/contacts/edit.html.haml
154
+ - app/views/isotope_contacts/contacts/index.html.haml
155
+ - app/views/isotope_contacts/contacts/new.html.haml
156
+ - app/views/isotope_contacts/contacts/show.html.haml
157
+ - app/views/isotope_contacts/contacts/_form.html.haml
158
+ - app/views/isotope_contacts/phone_numbers/edit.html.haml
159
+ - app/views/isotope_contacts/phone_numbers/new.html.haml
160
+ - app/views/isotope_contacts/phone_numbers/_form.html.haml
161
+ - app/views/isotope_contacts/emails/edit.html.haml
162
+ - app/views/isotope_contacts/emails/new.html.haml
163
+ - app/views/isotope_contacts/emails/_form.html.haml
164
+ - app/views/layouts/isotope_contacts/application.html.haml
165
+ - app/controllers/isotope_contacts/phone_numbers_controller.rb
166
+ - app/controllers/isotope_contacts/emails_controller.rb
167
+ - app/controllers/isotope_contacts/application_controller.rb
168
+ - app/controllers/isotope_contacts/contacts_controller.rb
169
+ - app/assets/stylesheets/isotope_contacts/application.css
170
+ - app/assets/stylesheets/isotope_contacts/screen.css.scss
171
+ - app/assets/javascripts/isotope_contacts/application.js
172
+ - app/models/isotope_contacts/contact.rb
173
+ - app/models/isotope_contacts/phone_number.rb
174
+ - app/models/isotope_contacts/email.rb
175
+ - config/routes.rb
176
+ - db/migrate/20120106213612_create_emails.rb
177
+ - db/migrate/20120106173507_create_contacts.rb
178
+ - db/migrate/20120106210546_create_phone_numbers.rb
179
+ - lib/isotope_contacts/version.rb
180
+ - lib/isotope_contacts/engine.rb
181
+ - lib/isotope_contacts.rb
182
+ - lib/tasks/isotope_contacts_tasks.rake
183
+ - MIT-LICENSE
184
+ - Rakefile
185
+ - README.md
186
+ - test/integration/isotope_contacts/phone_numbers_test.rb
187
+ - test/integration/isotope_contacts/contacts_test.rb
188
+ - test/integration/isotope_contacts/emails_test.rb
189
+ - test/minitest_helper.rb
190
+ - test/dummy/db/test.sqlite3
191
+ - test/dummy/db/development.sqlite3
192
+ - test/dummy/db/schema.rb
193
+ - test/dummy/app/helpers/application_helper.rb
194
+ - test/dummy/app/views/layouts/application.html.erb
195
+ - test/dummy/app/controllers/application_controller.rb
196
+ - test/dummy/app/assets/stylesheets/application.css
197
+ - test/dummy/app/assets/javascripts/application.js
198
+ - test/dummy/log/test.log
199
+ - test/dummy/log/development.log
200
+ - test/dummy/config.ru
201
+ - test/dummy/config/database.yml
202
+ - test/dummy/config/locales/en.yml
203
+ - test/dummy/config/environments/production.rb
204
+ - test/dummy/config/environments/test.rb
205
+ - test/dummy/config/environments/development.rb
206
+ - test/dummy/config/application.rb
207
+ - test/dummy/config/environment.rb
208
+ - test/dummy/config/initializers/mime_types.rb
209
+ - test/dummy/config/initializers/wrap_parameters.rb
210
+ - test/dummy/config/initializers/session_store.rb
211
+ - test/dummy/config/initializers/backtrace_silencers.rb
212
+ - test/dummy/config/initializers/secret_token.rb
213
+ - test/dummy/config/initializers/inflections.rb
214
+ - test/dummy/config/routes.rb
215
+ - test/dummy/config/boot.rb
216
+ - test/dummy/Rakefile
217
+ - test/dummy/script/rails
218
+ - test/dummy/public/422.html
219
+ - test/dummy/public/favicon.ico
220
+ - test/dummy/public/500.html
221
+ - test/dummy/public/404.html
222
+ - test/unit/isotope_contacts/phone_number_test.rb
223
+ - test/unit/isotope_contacts/contact_test.rb
224
+ - test/isotope_contacts_test.rb
225
+ - test/support/factories.rb
226
+ homepage: http://www.isotope11.com
227
+ licenses: []
228
+ post_install_message:
229
+ rdoc_options: []
230
+ require_paths:
231
+ - lib
232
+ required_ruby_version: !ruby/object:Gem::Requirement
233
+ none: false
234
+ requirements:
235
+ - - ! '>='
236
+ - !ruby/object:Gem::Version
237
+ version: '0'
238
+ segments:
239
+ - 0
240
+ hash: 2287440403549547799
241
+ required_rubygems_version: !ruby/object:Gem::Requirement
242
+ none: false
243
+ requirements:
244
+ - - ! '>='
245
+ - !ruby/object:Gem::Version
246
+ version: '0'
247
+ segments:
248
+ - 0
249
+ hash: 2287440403549547799
250
+ requirements: []
251
+ rubyforge_project:
252
+ rubygems_version: 1.8.10
253
+ signing_key:
254
+ specification_version: 3
255
+ summary: A Rails 3 engine for contact management.
256
+ test_files:
257
+ - test/integration/isotope_contacts/phone_numbers_test.rb
258
+ - test/integration/isotope_contacts/contacts_test.rb
259
+ - test/integration/isotope_contacts/emails_test.rb
260
+ - test/minitest_helper.rb
261
+ - test/dummy/db/test.sqlite3
262
+ - test/dummy/db/development.sqlite3
263
+ - test/dummy/db/schema.rb
264
+ - test/dummy/app/helpers/application_helper.rb
265
+ - test/dummy/app/views/layouts/application.html.erb
266
+ - test/dummy/app/controllers/application_controller.rb
267
+ - test/dummy/app/assets/stylesheets/application.css
268
+ - test/dummy/app/assets/javascripts/application.js
269
+ - test/dummy/log/test.log
270
+ - test/dummy/log/development.log
271
+ - test/dummy/config.ru
272
+ - test/dummy/config/database.yml
273
+ - test/dummy/config/locales/en.yml
274
+ - test/dummy/config/environments/production.rb
275
+ - test/dummy/config/environments/test.rb
276
+ - test/dummy/config/environments/development.rb
277
+ - test/dummy/config/application.rb
278
+ - test/dummy/config/environment.rb
279
+ - test/dummy/config/initializers/mime_types.rb
280
+ - test/dummy/config/initializers/wrap_parameters.rb
281
+ - test/dummy/config/initializers/session_store.rb
282
+ - test/dummy/config/initializers/backtrace_silencers.rb
283
+ - test/dummy/config/initializers/secret_token.rb
284
+ - test/dummy/config/initializers/inflections.rb
285
+ - test/dummy/config/routes.rb
286
+ - test/dummy/config/boot.rb
287
+ - test/dummy/Rakefile
288
+ - test/dummy/script/rails
289
+ - test/dummy/public/422.html
290
+ - test/dummy/public/favicon.ico
291
+ - test/dummy/public/500.html
292
+ - test/dummy/public/404.html
293
+ - test/unit/isotope_contacts/phone_number_test.rb
294
+ - test/unit/isotope_contacts/contact_test.rb
295
+ - test/isotope_contacts_test.rb
296
+ - test/support/factories.rb