acts-as-contactable 0.2.0 → 0.2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6c03a2c52e980b1dd1b3bbebd39e869fa9938e196468012e501a7672838086b1
4
- data.tar.gz: 83548e42bd26fc969ea2905361b92d18473cc72e78b7f69327856532dff86644
3
+ metadata.gz: 648293547d343ea627c96f4a06f1372b887f05a7bf55316dd1c1b3e8b89e1100
4
+ data.tar.gz: b0efcef1079092703ccf5e895d8d820f5ad4198ebc2ca0466623f47e7a2dd8e2
5
5
  SHA512:
6
- metadata.gz: 10346eca67eec689cf3fb2e571e83edd31b76d7411ea6dc1fb51b00b063a8637ee06b2709f0d953acbba468e71985806b0148975776a5fbb3268733e31b88b53
7
- data.tar.gz: 0e42b71058a1f1bc2938e8afe6df0fe34ab90c0ad36395c54fc027af9a620833897dc8f703ec2df21268db693ce201ea79f00a14d575f5490456183ba4ec1b69
6
+ metadata.gz: 631396e3b7e0414a135f8e98318131b9f75a3f6d3689f6eee951be48c63a54ab94a029b078ee1326390b6e4caafe7a43089d6138e8edad487baa4bd66c3bf009
7
+ data.tar.gz: 0e08197ba0d9f1657a64bb61f196abdfecf3b89a86ed37d058ac939002cae93b5a9c3819cb2aa0108736762ab4284254449bef253d03c48082533233d64583d6
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- acts-as-contactable (0.2.0)
4
+ acts-as-contactable (0.2.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActsAsContactable
4
- VERSION = '0.2.0'.freeze
4
+ VERSION = '0.2.1'.freeze
5
5
  end
data/spec/spec_helper.rb CHANGED
@@ -1,9 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  $LOAD_PATH << File.join(File.dirname(__FILE__), '..', 'lib')
4
- require 'acts_as_contactable'
5
4
  require 'sqlite3'
6
5
  require 'simplecov'
6
+ require 'acts_as_contactable'
7
7
  require 'factory_bot'
8
8
 
9
9
  Dir['./spec/shared_example/**/*.rb'].sort.each { |f| require f }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: acts-as-contactable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nora Alvarado
@@ -103,8 +103,7 @@ dependencies:
103
103
  description: TBD
104
104
  email:
105
105
  - noragmora@gmail.com
106
- executables:
107
- - rails
106
+ executables: []
108
107
  extensions: []
109
108
  extra_rdoc_files: []
110
109
  files:
@@ -117,17 +116,6 @@ files:
117
116
  - README.md
118
117
  - Rakefile
119
118
  - acts_as_contactable.gemspec
120
- - app/assets/config/acts_as_contactable_manifest.js
121
- - app/assets/images/acts_as_contactable/.keep
122
- - app/assets/javascripts/acts_as_contactable/.keep
123
- - app/assets/stylesheets/acts_as_contactable/.keep
124
- - app/controllers/.keep
125
- - app/helpers/.keep
126
- - app/mailers/.keep
127
- - app/models/.keep
128
- - app/views/.keep
129
- - bin/rails
130
- - config/routes.rb
131
119
  - lib/acts_as_contactable.rb
132
120
  - lib/acts_as_contactable/address.rb
133
121
  - lib/acts_as_contactable/contactable.rb
File without changes
File without changes
File without changes
File without changes
File without changes
data/app/helpers/.keep DELETED
File without changes
data/app/mailers/.keep DELETED
File without changes
data/app/models/.keep DELETED
File without changes
data/app/views/.keep DELETED
File without changes
data/bin/rails DELETED
@@ -1,26 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- # This command will automatically be run when you run "rails" with Rails gems
5
- # installed from the root of your application.
6
-
7
- ENGINE_ROOT = File.expand_path('..', __dir__)
8
- ENGINE_PATH = File.expand_path('../lib/acts_as_contactable/engine', __dir__)
9
-
10
- # Set up gems listed in the Gemfile.
11
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
12
- require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
13
-
14
- require 'rails'
15
- # Pick the frameworks you want:
16
- require 'active_model/railtie'
17
- require 'active_job/railtie'
18
- require 'active_record/railtie'
19
- require 'active_storage/engine'
20
- require 'action_controller/railtie'
21
- require 'action_mailer/railtie'
22
- require 'action_view/railtie'
23
- require 'action_cable/engine'
24
- require 'sprockets/railtie'
25
- # require "rails/test_unit/railtie"
26
- require 'rails/engine/commands'
data/config/routes.rb DELETED
@@ -1,4 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- Rails.application.routes.draw do
4
- end