contact_sync 1.4.6 → 1.5.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 (67) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +24 -22
  3. data/lib/contact_sync.rb +0 -1
  4. data/lib/contact_sync/engine.rb +7 -0
  5. data/lib/contact_sync/syncable.rb +10 -0
  6. data/lib/contact_sync/version.rb +1 -1
  7. data/lib/generators/install_contact_sync/templates/contact.rb +0 -64
  8. data/lib/generators/install_contact_sync/templates/phone.rb +18 -8
  9. data/{test → spec}/dummy/README.rdoc +0 -0
  10. data/{test → spec}/dummy/Rakefile +0 -0
  11. data/{test → spec}/dummy/app/assets/javascripts/application.js +0 -0
  12. data/{test → spec}/dummy/app/assets/stylesheets/application.css +0 -0
  13. data/{test → spec}/dummy/app/controllers/application_controller.rb +0 -0
  14. data/{test → spec}/dummy/app/helpers/application_helper.rb +0 -0
  15. data/spec/dummy/app/models/address.rb +5 -0
  16. data/spec/dummy/app/models/contact.rb +10 -0
  17. data/spec/dummy/app/models/email.rb +14 -0
  18. data/spec/dummy/app/models/phone.rb +41 -0
  19. data/spec/dummy/app/models/routes.rb +9 -0
  20. data/spec/dummy/app/models/user.rb +4 -0
  21. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  22. data/{test → spec}/dummy/bin/bundle +0 -0
  23. data/{test → spec}/dummy/bin/rails +0 -0
  24. data/{test → spec}/dummy/bin/rake +0 -0
  25. data/{test → spec}/dummy/bin/setup +0 -0
  26. data/{test → spec}/dummy/config.ru +0 -0
  27. data/{test → spec}/dummy/config/application.rb +13 -3
  28. data/{test → spec}/dummy/config/boot.rb +0 -0
  29. data/{test → spec}/dummy/config/database.yml +0 -0
  30. data/{test → spec}/dummy/config/environment.rb +0 -0
  31. data/{test → spec}/dummy/config/environments/development.rb +0 -0
  32. data/{test → spec}/dummy/config/environments/production.rb +0 -0
  33. data/{test → spec}/dummy/config/environments/test.rb +0 -0
  34. data/{test → spec}/dummy/config/initializers/assets.rb +0 -0
  35. data/{test → spec}/dummy/config/initializers/backtrace_silencers.rb +0 -0
  36. data/{test → spec}/dummy/config/initializers/cookies_serializer.rb +0 -0
  37. data/{test → spec}/dummy/config/initializers/filter_parameter_logging.rb +0 -0
  38. data/{test → spec}/dummy/config/initializers/inflections.rb +0 -0
  39. data/{test → spec}/dummy/config/initializers/mime_types.rb +0 -0
  40. data/spec/dummy/config/initializers/session_store.rb +3 -0
  41. data/{test → spec}/dummy/config/initializers/wrap_parameters.rb +0 -0
  42. data/{test → spec}/dummy/config/locales/en.yml +0 -0
  43. data/{test → spec}/dummy/config/routes.rb +0 -0
  44. data/{test → spec}/dummy/config/secrets.yml +3 -3
  45. data/spec/dummy/db/development.sqlite3 +0 -0
  46. data/spec/dummy/db/migrate/20150520065844_create_contact_sync_schema.rb +70 -0
  47. data/spec/dummy/db/migrate/20150529072537_remove_device_id_from_contacts.rb +7 -0
  48. data/spec/dummy/db/schema.rb +74 -0
  49. data/spec/dummy/db/test.sqlite3 +0 -0
  50. data/spec/dummy/log/development.log +186 -0
  51. data/spec/dummy/log/test.log +386 -0
  52. data/{test → spec}/dummy/public/404.html +0 -0
  53. data/{test → spec}/dummy/public/422.html +0 -0
  54. data/{test → spec}/dummy/public/500.html +0 -0
  55. data/{test → spec}/dummy/public/favicon.ico +0 -0
  56. data/spec/factories/contact_factory.rb +18 -0
  57. data/spec/factories/user_factory.rb +7 -0
  58. data/spec/rails_helper.rb +82 -0
  59. data/spec/spec_helper.rb +92 -0
  60. data/spec/string_phone_spec.rb +15 -0
  61. metadata +152 -82
  62. data/test/con_sync_test.rb +0 -7
  63. data/test/dummy/config/initializers/session_store.rb +0 -3
  64. data/test/dummy/db/schema.rb +0 -17
  65. data/test/integration/navigation_test.rb +0 -10
  66. data/test/lib/generators/con_sync/install_con_sync_generator_test.rb +0 -16
  67. data/test/test_helper.rb +0 -20
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,18 @@
1
+ FactoryGirl.define do
2
+ factory :contact do
3
+ first_name "John"
4
+ middle_name "Hans"
5
+ last_name "Doe"
6
+ composite_name "John Doe"
7
+ prefix ""
8
+ suffix ""
9
+ nickname "Joe"
10
+ organization "QBXNet"
11
+ job_title "Software Engineer"
12
+ birthdate DateTime.now - 20.years
13
+ record_id 12
14
+ creation_date DateTime.now - 1.month
15
+ modification_date DateTime.now - 2.days
16
+
17
+ end
18
+ end
@@ -0,0 +1,7 @@
1
+ FactoryGirl.define do
2
+ factory :user do
3
+ first_name "John"
4
+ last_name "Doe"
5
+ phone_number "00923219428808"
6
+ end
7
+ end
@@ -0,0 +1,82 @@
1
+ # This file is copied to spec/ when you run 'rails generate rspec:install'
2
+ ENV['RAILS_ENV'] ||= 'test'
3
+ require File.expand_path('spec/dummy/config/environment')
4
+ # Prevent database truncation if the environment is production
5
+ abort("The Rails environment is running in production mode!") if Rails.env.production?
6
+ require 'rspec/rails'
7
+ require 'factory_girl_rails'
8
+ require 'database_cleaner'
9
+ # Add additional requires below this line. Rails is not loaded until this point!
10
+ require 'contact_sync'
11
+ # Requires supporting ruby files with custom matchers and macros, etc, in
12
+ # spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
13
+ # run as spec files by default. This means that files in spec/support that end
14
+ # in _spec.rb will both be required and run as specs, causing the specs to be
15
+ # run twice. It is recommended that you do not name files matching this glob to
16
+ # end with _spec.rb. You can configure this pattern with the --pattern
17
+ # option on the command line or in ~/.rspec, .rspec or `.rspec-local`.
18
+ #
19
+ # The following line is provided for convenience purposes. It has the downside
20
+ # of increasing the boot-up time by auto-requiring all files in the support
21
+ # directory. Alternatively, in the individual `*_spec.rb` files, manually
22
+ # require only the support files necessary.
23
+ #
24
+ # Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f }
25
+
26
+ # Checks for pending migration and applies them before tests are run.
27
+ # If you are not using ActiveRecord, you can remove this line.
28
+ ActiveRecord::Migration.maintain_test_schema!
29
+
30
+ EncryptedStrings::SymmetricCipher.default_algorithm = 'aes-256-cbc'
31
+ EncryptedStrings::SymmetricCipher.default_password = 'dkljf84fklj09wfkj09rj0cnwjer09c2u3hf9w8nfiojesdpsfpcndsfjs'
32
+
33
+
34
+ RSpec.configure do |config|
35
+ #FactoryGirl setup
36
+ config.include FactoryGirl::Syntax::Methods
37
+ #Run FactoryGirl.lint for factory errors.
38
+ config.before(:suite) do
39
+ begin
40
+ DatabaseCleaner.start
41
+ DatabaseCleaner.strategy = :transaction
42
+ DatabaseCleaner.clean_with(:truncation)
43
+ FactoryGirl.lint
44
+ ensure
45
+ DatabaseCleaner.clean
46
+ end
47
+ end
48
+
49
+ config.around(:each) do |example|
50
+ DatabaseCleaner.cleaning do
51
+ example.run
52
+ end
53
+ end
54
+
55
+ # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
56
+ # config.fixture_path = "#{::Rails.root}/spec/fixtures"
57
+
58
+ # If you're not using ActiveRecord, or you'd prefer not to run each of your
59
+ # examples within a transaction, remove the following line or assign false
60
+ # instead of true.
61
+ config.use_transactional_fixtures = true
62
+
63
+ # RSpec Rails can automatically mix in different behaviours to your tests
64
+ # based on their file location, for example enabling you to call `get` and
65
+ # `post` in specs under `spec/controllers`.
66
+ #
67
+ # You can disable this behaviour by removing the line below, and instead
68
+ # explicitly tag your specs with their type, e.g.:
69
+ #
70
+ # RSpec.describe UsersController, :type => :controller do
71
+ # # ...
72
+ # end
73
+ #
74
+ # The different available types are documented in the features, such as in
75
+ # https://relishapp.com/rspec/rspec-rails/docs
76
+ config.infer_spec_type_from_file_location!
77
+
78
+ # Filter lines from Rails gems in backtraces.
79
+ config.filter_rails_from_backtrace!
80
+ # arbitrary gems may also be filtered via:
81
+ # config.filter_gems_from_backtrace("gem name")
82
+ end
@@ -0,0 +1,92 @@
1
+ # This file was generated by the `rails generate rspec:install` command. Conventionally, all
2
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
4
+ # this file to always be loaded, without a need to explicitly require it in any
5
+ # files.
6
+ #
7
+ # Given that it is always loaded, you are encouraged to keep this file as
8
+ # light-weight as possible. Requiring heavyweight dependencies from this file
9
+ # will add to the boot time of your test suite on EVERY test run, even for an
10
+ # individual file that may not need all of that loaded. Instead, consider making
11
+ # a separate helper file that requires the additional dependencies and performs
12
+ # the additional setup, and require it from the spec files that actually need
13
+ # it.
14
+ #
15
+ # The `.rspec` file also contains a few flags that are not defaults but that
16
+ # users commonly want.
17
+ #
18
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
19
+ RSpec.configure do |config|
20
+ # rspec-expectations config goes here. You can use an alternate
21
+ # assertion/expectation library such as wrong or the stdlib/minitest
22
+ # assertions if you prefer.
23
+ config.expect_with :rspec do |expectations|
24
+ # This option will default to `true` in RSpec 4. It makes the `description`
25
+ # and `failure_message` of custom matchers include text for helper methods
26
+ # defined using `chain`, e.g.:
27
+ # be_bigger_than(2).and_smaller_than(4).description
28
+ # # => "be bigger than 2 and smaller than 4"
29
+ # ...rather than:
30
+ # # => "be bigger than 2"
31
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
32
+ end
33
+
34
+ # rspec-mocks config goes here. You can use an alternate test double
35
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
36
+ config.mock_with :rspec do |mocks|
37
+ # Prevents you from mocking or stubbing a method that does not exist on
38
+ # a real object. This is generally recommended, and will default to
39
+ # `true` in RSpec 4.
40
+ mocks.verify_partial_doubles = true
41
+ end
42
+
43
+ # The settings below are suggested to provide a good initial experience
44
+ # with RSpec, but feel free to customize to your heart's content.
45
+ =begin
46
+ # These two settings work together to allow you to limit a spec run
47
+ # to individual examples or groups you care about by tagging them with
48
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
49
+ # get run.
50
+ config.filter_run :focus
51
+ config.run_all_when_everything_filtered = true
52
+
53
+ # Allows RSpec to persist some state between runs in order to support
54
+ # the `--only-failures` and `--next-failure` CLI options. We recommend
55
+ # you configure your source control system to ignore this file.
56
+ config.example_status_persistence_file_path = "spec/examples.txt"
57
+
58
+ # Limits the available syntax to the non-monkey patched syntax that is
59
+ # recommended. For more details, see:
60
+ # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
61
+ # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
62
+ # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
63
+ config.disable_monkey_patching!
64
+
65
+ # Many RSpec users commonly either run the entire suite or an individual
66
+ # file, and it's useful to allow more verbose output when running an
67
+ # individual spec file.
68
+ if config.files_to_run.one?
69
+ # Use the documentation formatter for detailed output,
70
+ # unless a formatter has already been configured
71
+ # (e.g. via a command-line flag).
72
+ config.default_formatter = 'doc'
73
+ end
74
+
75
+ # Print the 10 slowest examples and example groups at the
76
+ # end of the spec run, to help surface which specs are running
77
+ # particularly slow.
78
+ config.profile_examples = 10
79
+
80
+ # Run specs in random order to surface order dependencies. If you find an
81
+ # order dependency and want to debug it, you can fix the order by providing
82
+ # the seed, which is printed after each run.
83
+ # --seed 1234
84
+ config.order = :random
85
+
86
+ # Seed global randomization in this process using the `--seed` CLI option.
87
+ # Setting this allows you to use `--seed` to deterministically reproduce
88
+ # test failures related to randomization by passing the same `--seed` value
89
+ # as the one that triggered the failure.
90
+ Kernel.srand config.seed
91
+ =end
92
+ end
@@ -0,0 +1,15 @@
1
+ require 'rails_helper'
2
+
3
+ describe ContactSync::StringPhone do
4
+ phone_number = '+923219428808'
5
+ e_number = phone_number.extract_encrypted_string_from_phone
6
+ it 'splits a valid phone number' do
7
+ expect(phone_number.extract_country_code).to eql(["92","3219428808"])
8
+ end
9
+ it 'splits a valid phone number by alias method' do
10
+ expect("+923219428808".format_phone_number).to eql(["92","3219428808"])
11
+ end
12
+ it 'outputs an encrypted_number from a complete_phone_number' do
13
+ expect(e_number).to eql("hFkuSUoedTG9SuJmGG6EIw==\n")
14
+ end
15
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: contact_sync
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.6
4
+ version: 1.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Saad Masood
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-04 00:00:00.000000000 Z
11
+ date: 2016-02-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -53,13 +53,13 @@ dependencies:
53
53
  - !ruby/object:Gem::Version
54
54
  version: 0.3.3
55
55
  - !ruby/object:Gem::Dependency
56
- name: pry-rails
56
+ name: sqlite3
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - ">="
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0'
62
- type: :runtime
62
+ type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
@@ -67,7 +67,49 @@ dependencies:
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
- name: sqlite3
70
+ name: rspec-rails
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '3.4'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '3.4'
83
+ - !ruby/object:Gem::Dependency
84
+ name: guard
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: factory_girl_rails
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-rails
71
113
  requirement: !ruby/object:Gem::Requirement
72
114
  requirements:
73
115
  - - ">="
@@ -81,7 +123,7 @@ dependencies:
81
123
  - !ruby/object:Gem::Version
82
124
  version: '0'
83
125
  - !ruby/object:Gem::Dependency
84
- name: rspec
126
+ name: database_cleaner
85
127
  requirement: !ruby/object:Gem::Requirement
86
128
  requirements:
87
129
  - - ">="
@@ -125,44 +167,58 @@ files:
125
167
  - lib/generators/install_contact_sync/templates/routes.rb
126
168
  - lib/generators/install_contact_sync/templates/user.rb
127
169
  - lib/tasks/con_sync_tasks.rake
128
- - test/con_sync_test.rb
129
- - test/dummy/README.rdoc
130
- - test/dummy/Rakefile
131
- - test/dummy/app/assets/javascripts/application.js
132
- - test/dummy/app/assets/stylesheets/application.css
133
- - test/dummy/app/controllers/application_controller.rb
134
- - test/dummy/app/helpers/application_helper.rb
135
- - test/dummy/bin/bundle
136
- - test/dummy/bin/rails
137
- - test/dummy/bin/rake
138
- - test/dummy/bin/setup
139
- - test/dummy/config.ru
140
- - test/dummy/config/application.rb
141
- - test/dummy/config/boot.rb
142
- - test/dummy/config/database.yml
143
- - test/dummy/config/environment.rb
144
- - test/dummy/config/environments/development.rb
145
- - test/dummy/config/environments/production.rb
146
- - test/dummy/config/environments/test.rb
147
- - test/dummy/config/initializers/assets.rb
148
- - test/dummy/config/initializers/backtrace_silencers.rb
149
- - test/dummy/config/initializers/cookies_serializer.rb
150
- - test/dummy/config/initializers/filter_parameter_logging.rb
151
- - test/dummy/config/initializers/inflections.rb
152
- - test/dummy/config/initializers/mime_types.rb
153
- - test/dummy/config/initializers/session_store.rb
154
- - test/dummy/config/initializers/wrap_parameters.rb
155
- - test/dummy/config/locales/en.yml
156
- - test/dummy/config/routes.rb
157
- - test/dummy/config/secrets.yml
158
- - test/dummy/db/schema.rb
159
- - test/dummy/public/404.html
160
- - test/dummy/public/422.html
161
- - test/dummy/public/500.html
162
- - test/dummy/public/favicon.ico
163
- - test/integration/navigation_test.rb
164
- - test/lib/generators/con_sync/install_con_sync_generator_test.rb
165
- - test/test_helper.rb
170
+ - spec/dummy/README.rdoc
171
+ - spec/dummy/Rakefile
172
+ - spec/dummy/app/assets/javascripts/application.js
173
+ - spec/dummy/app/assets/stylesheets/application.css
174
+ - spec/dummy/app/controllers/application_controller.rb
175
+ - spec/dummy/app/helpers/application_helper.rb
176
+ - spec/dummy/app/models/address.rb
177
+ - spec/dummy/app/models/contact.rb
178
+ - spec/dummy/app/models/email.rb
179
+ - spec/dummy/app/models/phone.rb
180
+ - spec/dummy/app/models/routes.rb
181
+ - spec/dummy/app/models/user.rb
182
+ - spec/dummy/app/views/layouts/application.html.erb
183
+ - spec/dummy/bin/bundle
184
+ - spec/dummy/bin/rails
185
+ - spec/dummy/bin/rake
186
+ - spec/dummy/bin/setup
187
+ - spec/dummy/config.ru
188
+ - spec/dummy/config/application.rb
189
+ - spec/dummy/config/boot.rb
190
+ - spec/dummy/config/database.yml
191
+ - spec/dummy/config/environment.rb
192
+ - spec/dummy/config/environments/development.rb
193
+ - spec/dummy/config/environments/production.rb
194
+ - spec/dummy/config/environments/test.rb
195
+ - spec/dummy/config/initializers/assets.rb
196
+ - spec/dummy/config/initializers/backtrace_silencers.rb
197
+ - spec/dummy/config/initializers/cookies_serializer.rb
198
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
199
+ - spec/dummy/config/initializers/inflections.rb
200
+ - spec/dummy/config/initializers/mime_types.rb
201
+ - spec/dummy/config/initializers/session_store.rb
202
+ - spec/dummy/config/initializers/wrap_parameters.rb
203
+ - spec/dummy/config/locales/en.yml
204
+ - spec/dummy/config/routes.rb
205
+ - spec/dummy/config/secrets.yml
206
+ - spec/dummy/db/development.sqlite3
207
+ - spec/dummy/db/migrate/20150520065844_create_contact_sync_schema.rb
208
+ - spec/dummy/db/migrate/20150529072537_remove_device_id_from_contacts.rb
209
+ - spec/dummy/db/schema.rb
210
+ - spec/dummy/db/test.sqlite3
211
+ - spec/dummy/log/development.log
212
+ - spec/dummy/log/test.log
213
+ - spec/dummy/public/404.html
214
+ - spec/dummy/public/422.html
215
+ - spec/dummy/public/500.html
216
+ - spec/dummy/public/favicon.ico
217
+ - spec/factories/contact_factory.rb
218
+ - spec/factories/user_factory.rb
219
+ - spec/rails_helper.rb
220
+ - spec/spec_helper.rb
221
+ - spec/string_phone_spec.rb
166
222
  homepage: http://github.com/itsSaad/contact_sync
167
223
  licenses:
168
224
  - MIT
@@ -188,41 +244,55 @@ signing_key:
188
244
  specification_version: 4
189
245
  summary: Easy Contact Syncing API
190
246
  test_files:
191
- - test/con_sync_test.rb
192
- - test/dummy/app/assets/javascripts/application.js
193
- - test/dummy/app/assets/stylesheets/application.css
194
- - test/dummy/app/controllers/application_controller.rb
195
- - test/dummy/app/helpers/application_helper.rb
196
- - test/dummy/bin/bundle
197
- - test/dummy/bin/rails
198
- - test/dummy/bin/rake
199
- - test/dummy/bin/setup
200
- - test/dummy/config/application.rb
201
- - test/dummy/config/boot.rb
202
- - test/dummy/config/database.yml
203
- - test/dummy/config/environment.rb
204
- - test/dummy/config/environments/development.rb
205
- - test/dummy/config/environments/production.rb
206
- - test/dummy/config/environments/test.rb
207
- - test/dummy/config/initializers/assets.rb
208
- - test/dummy/config/initializers/backtrace_silencers.rb
209
- - test/dummy/config/initializers/cookies_serializer.rb
210
- - test/dummy/config/initializers/filter_parameter_logging.rb
211
- - test/dummy/config/initializers/inflections.rb
212
- - test/dummy/config/initializers/mime_types.rb
213
- - test/dummy/config/initializers/session_store.rb
214
- - test/dummy/config/initializers/wrap_parameters.rb
215
- - test/dummy/config/locales/en.yml
216
- - test/dummy/config/routes.rb
217
- - test/dummy/config/secrets.yml
218
- - test/dummy/config.ru
219
- - test/dummy/db/schema.rb
220
- - test/dummy/public/404.html
221
- - test/dummy/public/422.html
222
- - test/dummy/public/500.html
223
- - test/dummy/public/favicon.ico
224
- - test/dummy/Rakefile
225
- - test/dummy/README.rdoc
226
- - test/integration/navigation_test.rb
227
- - test/lib/generators/con_sync/install_con_sync_generator_test.rb
228
- - test/test_helper.rb
247
+ - spec/dummy/app/assets/javascripts/application.js
248
+ - spec/dummy/app/assets/stylesheets/application.css
249
+ - spec/dummy/app/controllers/application_controller.rb
250
+ - spec/dummy/app/helpers/application_helper.rb
251
+ - spec/dummy/app/models/address.rb
252
+ - spec/dummy/app/models/contact.rb
253
+ - spec/dummy/app/models/email.rb
254
+ - spec/dummy/app/models/phone.rb
255
+ - spec/dummy/app/models/routes.rb
256
+ - spec/dummy/app/models/user.rb
257
+ - spec/dummy/app/views/layouts/application.html.erb
258
+ - spec/dummy/bin/bundle
259
+ - spec/dummy/bin/rails
260
+ - spec/dummy/bin/rake
261
+ - spec/dummy/bin/setup
262
+ - spec/dummy/config/application.rb
263
+ - spec/dummy/config/boot.rb
264
+ - spec/dummy/config/database.yml
265
+ - spec/dummy/config/environment.rb
266
+ - spec/dummy/config/environments/development.rb
267
+ - spec/dummy/config/environments/production.rb
268
+ - spec/dummy/config/environments/test.rb
269
+ - spec/dummy/config/initializers/assets.rb
270
+ - spec/dummy/config/initializers/backtrace_silencers.rb
271
+ - spec/dummy/config/initializers/cookies_serializer.rb
272
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
273
+ - spec/dummy/config/initializers/inflections.rb
274
+ - spec/dummy/config/initializers/mime_types.rb
275
+ - spec/dummy/config/initializers/session_store.rb
276
+ - spec/dummy/config/initializers/wrap_parameters.rb
277
+ - spec/dummy/config/locales/en.yml
278
+ - spec/dummy/config/routes.rb
279
+ - spec/dummy/config/secrets.yml
280
+ - spec/dummy/config.ru
281
+ - spec/dummy/db/development.sqlite3
282
+ - spec/dummy/db/migrate/20150520065844_create_contact_sync_schema.rb
283
+ - spec/dummy/db/migrate/20150529072537_remove_device_id_from_contacts.rb
284
+ - spec/dummy/db/schema.rb
285
+ - spec/dummy/db/test.sqlite3
286
+ - spec/dummy/log/development.log
287
+ - spec/dummy/log/test.log
288
+ - spec/dummy/public/404.html
289
+ - spec/dummy/public/422.html
290
+ - spec/dummy/public/500.html
291
+ - spec/dummy/public/favicon.ico
292
+ - spec/dummy/Rakefile
293
+ - spec/dummy/README.rdoc
294
+ - spec/factories/contact_factory.rb
295
+ - spec/factories/user_factory.rb
296
+ - spec/rails_helper.rb
297
+ - spec/spec_helper.rb
298
+ - spec/string_phone_spec.rb