activity_notification 1.4.4 → 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.
- checksums.yaml +4 -4
 - data/.travis.yml +26 -20
 - data/CHANGELOG.md +15 -0
 - data/Gemfile +1 -1
 - data/Gemfile.lock +93 -85
 - data/README.md +44 -8
 - data/activity_notification.gemspec +6 -6
 - data/gemfiles/Gemfile.rails-4.2 +2 -0
 - data/gemfiles/Gemfile.rails-4.2.lock +41 -41
 - data/gemfiles/Gemfile.rails-5.0.lock +75 -75
 - data/gemfiles/Gemfile.rails-5.1.lock +80 -80
 - data/gemfiles/Gemfile.rails-5.2 +18 -0
 - data/gemfiles/Gemfile.rails-5.2.lock +242 -0
 - data/lib/activity_notification/renderable.rb +9 -5
 - data/lib/activity_notification/version.rb +1 -1
 - data/lib/generators/templates/controllers/README +2 -2
 - data/scripts/bundle_update.sh +7 -0
 - data/spec/concerns/models/target_spec.rb +6 -32
 - data/spec/concerns/renderable_spec.rb +34 -15
 - data/spec/helpers/view_helpers_spec.rb +15 -0
 - data/spec/mailers/mailer_spec.rb +1 -1
 - data/spec/rails_app/config/application.rb +3 -0
 - data/spec/rails_app/config/locales/activity_notification.en.yml +7 -3
 - data/spec/rails_app/lib/mailer_previews/mailer_preview.rb +1 -1
 - data/spec/roles/acts_as_notifiable_spec.rb +14 -12
 - metadata +17 -14
 
| 
         @@ -20,20 +20,20 @@ Gem::Specification.new do |s| 
     | 
|
| 
       20 
20 
     | 
    
         
             
              s.require_paths = ["lib"]
         
     | 
| 
       21 
21 
     | 
    
         
             
              s.required_ruby_version = '>= 2.1.0'
         
     | 
| 
       22 
22 
     | 
    
         | 
| 
       23 
     | 
    
         
            -
              s.add_dependency 'railties', '>= 4.2.0', '< 5. 
     | 
| 
      
 23 
     | 
    
         
            +
              s.add_dependency 'railties', '>= 4.2.0', '< 5.3'
         
     | 
| 
       24 
24 
     | 
    
         
             
              s.add_dependency 'i18n', '>= 0.5.0'
         
     | 
| 
       25 
25 
     | 
    
         
             
              s.add_dependency 'jquery-rails', '>= 3.1.1'
         
     | 
| 
       26 
26 
     | 
    
         | 
| 
       27 
27 
     | 
    
         
             
              s.add_development_dependency 'sqlite3', '~> 1.3.13'
         
     | 
| 
       28 
     | 
    
         
            -
              s.add_development_dependency 'mysql2', '~> 0. 
     | 
| 
       29 
     | 
    
         
            -
              s.add_development_dependency 'pg', '~> 0. 
     | 
| 
      
 28 
     | 
    
         
            +
              s.add_development_dependency 'mysql2', '~> 0.5.1'
         
     | 
| 
      
 29 
     | 
    
         
            +
              s.add_development_dependency 'pg', '~> 1.0.0'
         
     | 
| 
       30 
30 
     | 
    
         
             
              s.add_development_dependency 'mongoid', '>= 4.0.0'
         
     | 
| 
       31 
     | 
    
         
            -
              s.add_development_dependency 'rspec-rails', '~> 3.7. 
     | 
| 
      
 31 
     | 
    
         
            +
              s.add_development_dependency 'rspec-rails', '~> 3.7.2'
         
     | 
| 
       32 
32 
     | 
    
         
             
              s.add_development_dependency 'factory_bot_rails', '~> 4.8.2'
         
     | 
| 
       33 
33 
     | 
    
         
             
              s.add_development_dependency 'simplecov', '~> 0'
         
     | 
| 
       34 
     | 
    
         
            -
              s.add_development_dependency 'yard', '~> 0.9. 
     | 
| 
      
 34 
     | 
    
         
            +
              s.add_development_dependency 'yard', '~> 0.9.12'
         
     | 
| 
       35 
35 
     | 
    
         
             
              s.add_development_dependency 'yard-activesupport-concern', '~> 0.0.1'
         
     | 
| 
       36 
     | 
    
         
            -
              s.add_development_dependency 'devise', '~> 4.3 
     | 
| 
      
 36 
     | 
    
         
            +
              s.add_development_dependency 'devise', '~> 4.4.3'
         
     | 
| 
       37 
37 
     | 
    
         
             
              s.add_development_dependency 'aws-sdk-sns', '~> 1'
         
     | 
| 
       38 
38 
     | 
    
         
             
              s.add_development_dependency 'slack-notifier', '>= 1.5.1'
         
     | 
| 
       39 
39 
     | 
    
         
             
            end
         
     | 
    
        data/gemfiles/Gemfile.rails-4.2
    CHANGED
    
    
| 
         @@ -1,10 +1,10 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            PATH
         
     | 
| 
       2 
2 
     | 
    
         
             
              remote: ..
         
     | 
| 
       3 
3 
     | 
    
         
             
              specs:
         
     | 
| 
       4 
     | 
    
         
            -
                activity_notification (1. 
     | 
| 
      
 4 
     | 
    
         
            +
                activity_notification (1.5.0)
         
     | 
| 
       5 
5 
     | 
    
         
             
                  i18n (>= 0.5.0)
         
     | 
| 
       6 
6 
     | 
    
         
             
                  jquery-rails (>= 3.1.1)
         
     | 
| 
       7 
     | 
    
         
            -
                  railties (>= 4.2.0, < 5. 
     | 
| 
      
 7 
     | 
    
         
            +
                  railties (>= 4.2.0, < 5.3)
         
     | 
| 
       8 
8 
     | 
    
         | 
| 
       9 
9 
     | 
    
         
             
            GEM
         
     | 
| 
       10 
10 
     | 
    
         
             
              remote: https://rubygems.org/
         
     | 
| 
         @@ -48,8 +48,8 @@ GEM 
     | 
|
| 
       48 
48 
     | 
    
         
             
                  railties (>= 3.0)
         
     | 
| 
       49 
49 
     | 
    
         
             
                  rspec-rails (>= 2.2)
         
     | 
| 
       50 
50 
     | 
    
         
             
                arel (6.0.4)
         
     | 
| 
       51 
     | 
    
         
            -
                aws-partitions (1. 
     | 
| 
       52 
     | 
    
         
            -
                aws-sdk-core (3. 
     | 
| 
      
 51 
     | 
    
         
            +
                aws-partitions (1.83.0)
         
     | 
| 
      
 52 
     | 
    
         
            +
                aws-sdk-core (3.20.2)
         
     | 
| 
       53 
53 
     | 
    
         
             
                  aws-partitions (~> 1.0)
         
     | 
| 
       54 
54 
     | 
    
         
             
                  aws-sigv4 (~> 1.0)
         
     | 
| 
       55 
55 
     | 
    
         
             
                  jmespath (~> 1.0)
         
     | 
| 
         @@ -58,11 +58,11 @@ GEM 
     | 
|
| 
       58 
58 
     | 
    
         
             
                  aws-sigv4 (~> 1.0)
         
     | 
| 
       59 
59 
     | 
    
         
             
                aws-sigv4 (1.0.2)
         
     | 
| 
       60 
60 
     | 
    
         
             
                bcrypt (3.1.11)
         
     | 
| 
       61 
     | 
    
         
            -
                bson (4. 
     | 
| 
      
 61 
     | 
    
         
            +
                bson (4.3.0)
         
     | 
| 
       62 
62 
     | 
    
         
             
                builder (3.2.3)
         
     | 
| 
       63 
     | 
    
         
            -
                bullet (5. 
     | 
| 
      
 63 
     | 
    
         
            +
                bullet (5.7.5)
         
     | 
| 
       64 
64 
     | 
    
         
             
                  activesupport (>= 3.0.0)
         
     | 
| 
       65 
     | 
    
         
            -
                  uniform_notifier (~> 1. 
     | 
| 
      
 65 
     | 
    
         
            +
                  uniform_notifier (~> 1.11.0)
         
     | 
| 
       66 
66 
     | 
    
         
             
                concurrent-ruby (1.0.5)
         
     | 
| 
       67 
67 
     | 
    
         
             
                coveralls (0.8.21)
         
     | 
| 
       68 
68 
     | 
    
         
             
                  json (>= 1.8, < 3)
         
     | 
| 
         @@ -70,19 +70,19 @@ GEM 
     | 
|
| 
       70 
70 
     | 
    
         
             
                  term-ansicolor (~> 1.3)
         
     | 
| 
       71 
71 
     | 
    
         
             
                  thor (~> 0.19.4)
         
     | 
| 
       72 
72 
     | 
    
         
             
                  tins (~> 1.6)
         
     | 
| 
       73 
     | 
    
         
            -
                crass (1.0. 
     | 
| 
       74 
     | 
    
         
            -
                devise (4.3 
     | 
| 
      
 73 
     | 
    
         
            +
                crass (1.0.4)
         
     | 
| 
      
 74 
     | 
    
         
            +
                devise (4.4.3)
         
     | 
| 
       75 
75 
     | 
    
         
             
                  bcrypt (~> 3.0)
         
     | 
| 
       76 
76 
     | 
    
         
             
                  orm_adapter (~> 0.1)
         
     | 
| 
       77 
     | 
    
         
            -
                  railties (>= 4.1.0, <  
     | 
| 
      
 77 
     | 
    
         
            +
                  railties (>= 4.1.0, < 6.0)
         
     | 
| 
       78 
78 
     | 
    
         
             
                  responders
         
     | 
| 
       79 
79 
     | 
    
         
             
                  warden (~> 1.2.3)
         
     | 
| 
       80 
80 
     | 
    
         
             
                diff-lcs (1.3)
         
     | 
| 
       81 
81 
     | 
    
         
             
                docile (1.1.5)
         
     | 
| 
       82 
     | 
    
         
            -
                dotenv (2. 
     | 
| 
       83 
     | 
    
         
            -
                dotenv-rails (2. 
     | 
| 
       84 
     | 
    
         
            -
                  dotenv (= 2. 
     | 
| 
       85 
     | 
    
         
            -
                  railties (>= 3.2, <  
     | 
| 
      
 82 
     | 
    
         
            +
                dotenv (2.4.0)
         
     | 
| 
      
 83 
     | 
    
         
            +
                dotenv-rails (2.4.0)
         
     | 
| 
      
 84 
     | 
    
         
            +
                  dotenv (= 2.4.0)
         
     | 
| 
      
 85 
     | 
    
         
            +
                  railties (>= 3.2, < 6.0)
         
     | 
| 
       86 
86 
     | 
    
         
             
                erubis (2.7.0)
         
     | 
| 
       87 
87 
     | 
    
         
             
                factory_bot (4.8.2)
         
     | 
| 
       88 
88 
     | 
    
         
             
                  activesupport (>= 3.0.0)
         
     | 
| 
         @@ -91,36 +91,36 @@ GEM 
     | 
|
| 
       91 
91 
     | 
    
         
             
                  railties (>= 3.0.0)
         
     | 
| 
       92 
92 
     | 
    
         
             
                globalid (0.4.1)
         
     | 
| 
       93 
93 
     | 
    
         
             
                  activesupport (>= 4.2.0)
         
     | 
| 
       94 
     | 
    
         
            -
                i18n (0.9. 
     | 
| 
      
 94 
     | 
    
         
            +
                i18n (0.9.5)
         
     | 
| 
       95 
95 
     | 
    
         
             
                  concurrent-ruby (~> 1.0)
         
     | 
| 
       96 
     | 
    
         
            -
                jmespath (1. 
     | 
| 
       97 
     | 
    
         
            -
                jquery-rails (4.3. 
     | 
| 
      
 96 
     | 
    
         
            +
                jmespath (1.4.0)
         
     | 
| 
      
 97 
     | 
    
         
            +
                jquery-rails (4.3.3)
         
     | 
| 
       98 
98 
     | 
    
         
             
                  rails-dom-testing (>= 1, < 3)
         
     | 
| 
       99 
99 
     | 
    
         
             
                  railties (>= 4.2.0)
         
     | 
| 
       100 
100 
     | 
    
         
             
                  thor (>= 0.14, < 2.0)
         
     | 
| 
       101 
101 
     | 
    
         
             
                json (2.1.0)
         
     | 
| 
       102 
     | 
    
         
            -
                loofah (2. 
     | 
| 
      
 102 
     | 
    
         
            +
                loofah (2.2.2)
         
     | 
| 
       103 
103 
     | 
    
         
             
                  crass (~> 1.0.2)
         
     | 
| 
       104 
104 
     | 
    
         
             
                  nokogiri (>= 1.5.9)
         
     | 
| 
       105 
105 
     | 
    
         
             
                mail (2.7.0)
         
     | 
| 
       106 
106 
     | 
    
         
             
                  mini_mime (>= 0.1.1)
         
     | 
| 
       107 
107 
     | 
    
         
             
                mini_mime (1.0.0)
         
     | 
| 
       108 
108 
     | 
    
         
             
                mini_portile2 (2.3.0)
         
     | 
| 
       109 
     | 
    
         
            -
                minitest (5. 
     | 
| 
       110 
     | 
    
         
            -
                mongo (2. 
     | 
| 
       111 
     | 
    
         
            -
                  bson (>= 4. 
     | 
| 
       112 
     | 
    
         
            -
                mongoid (5. 
     | 
| 
      
 109 
     | 
    
         
            +
                minitest (5.11.3)
         
     | 
| 
      
 110 
     | 
    
         
            +
                mongo (2.5.3)
         
     | 
| 
      
 111 
     | 
    
         
            +
                  bson (>= 4.3.0, < 5.0.0)
         
     | 
| 
      
 112 
     | 
    
         
            +
                mongoid (5.4.0)
         
     | 
| 
       113 
113 
     | 
    
         
             
                  activemodel (~> 4.0)
         
     | 
| 
       114 
     | 
    
         
            -
                  mongo (>= 2. 
     | 
| 
      
 114 
     | 
    
         
            +
                  mongo (>= 2.5.1, < 3.0.0)
         
     | 
| 
       115 
115 
     | 
    
         
             
                  origin (~> 2.3)
         
     | 
| 
       116 
116 
     | 
    
         
             
                  tzinfo (>= 0.3.37)
         
     | 
| 
       117 
117 
     | 
    
         
             
                mysql2 (0.4.10)
         
     | 
| 
       118 
     | 
    
         
            -
                nokogiri (1.8. 
     | 
| 
      
 118 
     | 
    
         
            +
                nokogiri (1.8.2)
         
     | 
| 
       119 
119 
     | 
    
         
             
                  mini_portile2 (~> 2.3.0)
         
     | 
| 
       120 
120 
     | 
    
         
             
                origin (2.3.1)
         
     | 
| 
       121 
121 
     | 
    
         
             
                orm_adapter (0.5.0)
         
     | 
| 
       122 
122 
     | 
    
         
             
                pg (0.21.0)
         
     | 
| 
       123 
     | 
    
         
            -
                rack (1.6. 
     | 
| 
      
 123 
     | 
    
         
            +
                rack (1.6.10)
         
     | 
| 
       124 
124 
     | 
    
         
             
                rack-test (0.6.3)
         
     | 
| 
       125 
125 
     | 
    
         
             
                  rack (>= 1.0)
         
     | 
| 
       126 
126 
     | 
    
         
             
                rails (4.2.10)
         
     | 
| 
         @@ -136,22 +136,22 @@ GEM 
     | 
|
| 
       136 
136 
     | 
    
         
             
                  sprockets-rails
         
     | 
| 
       137 
137 
     | 
    
         
             
                rails-deprecated_sanitizer (1.0.3)
         
     | 
| 
       138 
138 
     | 
    
         
             
                  activesupport (>= 4.2.0.alpha)
         
     | 
| 
       139 
     | 
    
         
            -
                rails-dom-testing (1.0. 
     | 
| 
       140 
     | 
    
         
            -
                  activesupport (>= 4.2.0 
     | 
| 
      
 139 
     | 
    
         
            +
                rails-dom-testing (1.0.9)
         
     | 
| 
      
 140 
     | 
    
         
            +
                  activesupport (>= 4.2.0, < 5.0)
         
     | 
| 
       141 
141 
     | 
    
         
             
                  nokogiri (~> 1.6)
         
     | 
| 
       142 
142 
     | 
    
         
             
                  rails-deprecated_sanitizer (>= 1.0.1)
         
     | 
| 
       143 
     | 
    
         
            -
                rails-html-sanitizer (1.0. 
     | 
| 
       144 
     | 
    
         
            -
                  loofah (~> 2. 
     | 
| 
      
 143 
     | 
    
         
            +
                rails-html-sanitizer (1.0.4)
         
     | 
| 
      
 144 
     | 
    
         
            +
                  loofah (~> 2.2, >= 2.2.2)
         
     | 
| 
       145 
145 
     | 
    
         
             
                railties (4.2.10)
         
     | 
| 
       146 
146 
     | 
    
         
             
                  actionpack (= 4.2.10)
         
     | 
| 
       147 
147 
     | 
    
         
             
                  activesupport (= 4.2.10)
         
     | 
| 
       148 
148 
     | 
    
         
             
                  rake (>= 0.8.7)
         
     | 
| 
       149 
149 
     | 
    
         
             
                  thor (>= 0.18.1, < 2.0)
         
     | 
| 
       150 
     | 
    
         
            -
                rake (12.3. 
     | 
| 
      
 150 
     | 
    
         
            +
                rake (12.3.1)
         
     | 
| 
       151 
151 
     | 
    
         
             
                responders (2.4.0)
         
     | 
| 
       152 
152 
     | 
    
         
             
                  actionpack (>= 4.2.0, < 5.3)
         
     | 
| 
       153 
153 
     | 
    
         
             
                  railties (>= 4.2.0, < 5.3)
         
     | 
| 
       154 
     | 
    
         
            -
                rspec-core (3.7. 
     | 
| 
      
 154 
     | 
    
         
            +
                rspec-core (3.7.1)
         
     | 
| 
       155 
155 
     | 
    
         
             
                  rspec-support (~> 3.7.0)
         
     | 
| 
       156 
156 
     | 
    
         
             
                rspec-expectations (3.7.0)
         
     | 
| 
       157 
157 
     | 
    
         
             
                  diff-lcs (>= 1.2.0, < 2.0)
         
     | 
| 
         @@ -159,7 +159,7 @@ GEM 
     | 
|
| 
       159 
159 
     | 
    
         
             
                rspec-mocks (3.7.0)
         
     | 
| 
       160 
160 
     | 
    
         
             
                  diff-lcs (>= 1.2.0, < 2.0)
         
     | 
| 
       161 
161 
     | 
    
         
             
                  rspec-support (~> 3.7.0)
         
     | 
| 
       162 
     | 
    
         
            -
                rspec-rails (3.7. 
     | 
| 
      
 162 
     | 
    
         
            +
                rspec-rails (3.7.2)
         
     | 
| 
       163 
163 
     | 
    
         
             
                  actionpack (>= 3.0)
         
     | 
| 
       164 
164 
     | 
    
         
             
                  activesupport (>= 3.0)
         
     | 
| 
       165 
165 
     | 
    
         
             
                  railties (>= 3.0)
         
     | 
| 
         @@ -167,13 +167,13 @@ GEM 
     | 
|
| 
       167 
167 
     | 
    
         
             
                  rspec-expectations (~> 3.7.0)
         
     | 
| 
       168 
168 
     | 
    
         
             
                  rspec-mocks (~> 3.7.0)
         
     | 
| 
       169 
169 
     | 
    
         
             
                  rspec-support (~> 3.7.0)
         
     | 
| 
       170 
     | 
    
         
            -
                rspec-support (3.7. 
     | 
| 
      
 170 
     | 
    
         
            +
                rspec-support (3.7.1)
         
     | 
| 
       171 
171 
     | 
    
         
             
                simplecov (0.14.1)
         
     | 
| 
       172 
172 
     | 
    
         
             
                  docile (~> 1.1.0)
         
     | 
| 
       173 
173 
     | 
    
         
             
                  json (>= 1.8, < 3)
         
     | 
| 
       174 
174 
     | 
    
         
             
                  simplecov-html (~> 0.10.0)
         
     | 
| 
       175 
175 
     | 
    
         
             
                simplecov-html (0.10.2)
         
     | 
| 
       176 
     | 
    
         
            -
                slack-notifier (2.3. 
     | 
| 
      
 176 
     | 
    
         
            +
                slack-notifier (2.3.2)
         
     | 
| 
       177 
177 
     | 
    
         
             
                sprockets (3.7.1)
         
     | 
| 
       178 
178 
     | 
    
         
             
                  concurrent-ruby (~> 1.0)
         
     | 
| 
       179 
179 
     | 
    
         
             
                  rack (> 1, < 3)
         
     | 
| 
         @@ -187,13 +187,13 @@ GEM 
     | 
|
| 
       187 
187 
     | 
    
         
             
                thor (0.19.4)
         
     | 
| 
       188 
188 
     | 
    
         
             
                thread_safe (0.3.6)
         
     | 
| 
       189 
189 
     | 
    
         
             
                timecop (0.9.1)
         
     | 
| 
       190 
     | 
    
         
            -
                tins (1. 
     | 
| 
       191 
     | 
    
         
            -
                tzinfo (1.2. 
     | 
| 
      
 190 
     | 
    
         
            +
                tins (1.16.3)
         
     | 
| 
      
 191 
     | 
    
         
            +
                tzinfo (1.2.5)
         
     | 
| 
       192 
192 
     | 
    
         
             
                  thread_safe (~> 0.1)
         
     | 
| 
       193 
     | 
    
         
            -
                uniform_notifier (1. 
     | 
| 
      
 193 
     | 
    
         
            +
                uniform_notifier (1.11.0)
         
     | 
| 
       194 
194 
     | 
    
         
             
                warden (1.2.7)
         
     | 
| 
       195 
195 
     | 
    
         
             
                  rack (>= 1.0)
         
     | 
| 
       196 
     | 
    
         
            -
                yard (0.9. 
     | 
| 
      
 196 
     | 
    
         
            +
                yard (0.9.12)
         
     | 
| 
       197 
197 
     | 
    
         
             
                yard-activesupport-concern (0.0.1)
         
     | 
| 
       198 
198 
     | 
    
         
             
                  yard (>= 0.8)
         
     | 
| 
       199 
199 
     | 
    
         | 
| 
         @@ -206,19 +206,19 @@ DEPENDENCIES 
     | 
|
| 
       206 
206 
     | 
    
         
             
              aws-sdk-sns (~> 1)
         
     | 
| 
       207 
207 
     | 
    
         
             
              bullet
         
     | 
| 
       208 
208 
     | 
    
         
             
              coveralls
         
     | 
| 
       209 
     | 
    
         
            -
              devise (~> 4.3 
     | 
| 
      
 209 
     | 
    
         
            +
              devise (~> 4.4.3)
         
     | 
| 
       210 
210 
     | 
    
         
             
              dotenv-rails
         
     | 
| 
       211 
211 
     | 
    
         
             
              factory_bot_rails (~> 4.8.2)
         
     | 
| 
       212 
212 
     | 
    
         
             
              mongoid (>= 4.0.0)
         
     | 
| 
       213 
213 
     | 
    
         
             
              mysql2 (~> 0.4.10)
         
     | 
| 
       214 
214 
     | 
    
         
             
              pg (~> 0.21.0)
         
     | 
| 
       215 
215 
     | 
    
         
             
              rails (~> 4.2.0)
         
     | 
| 
       216 
     | 
    
         
            -
              rspec-rails (~> 3.7. 
     | 
| 
      
 216 
     | 
    
         
            +
              rspec-rails (~> 3.7.2)
         
     | 
| 
       217 
217 
     | 
    
         
             
              simplecov (~> 0)
         
     | 
| 
       218 
218 
     | 
    
         
             
              slack-notifier (>= 1.5.1)
         
     | 
| 
       219 
219 
     | 
    
         
             
              sqlite3 (~> 1.3.13)
         
     | 
| 
       220 
220 
     | 
    
         
             
              timecop
         
     | 
| 
       221 
     | 
    
         
            -
              yard (~> 0.9. 
     | 
| 
      
 221 
     | 
    
         
            +
              yard (~> 0.9.12)
         
     | 
| 
       222 
222 
     | 
    
         
             
              yard-activesupport-concern (~> 0.0.1)
         
     | 
| 
       223 
223 
     | 
    
         | 
| 
       224 
224 
     | 
    
         
             
            BUNDLED WITH
         
     | 
| 
         @@ -1,49 +1,49 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            PATH
         
     | 
| 
       2 
2 
     | 
    
         
             
              remote: ..
         
     | 
| 
       3 
3 
     | 
    
         
             
              specs:
         
     | 
| 
       4 
     | 
    
         
            -
                activity_notification (1. 
     | 
| 
      
 4 
     | 
    
         
            +
                activity_notification (1.5.0)
         
     | 
| 
       5 
5 
     | 
    
         
             
                  i18n (>= 0.5.0)
         
     | 
| 
       6 
6 
     | 
    
         
             
                  jquery-rails (>= 3.1.1)
         
     | 
| 
       7 
     | 
    
         
            -
                  railties (>= 4.2.0, < 5. 
     | 
| 
      
 7 
     | 
    
         
            +
                  railties (>= 4.2.0, < 5.3)
         
     | 
| 
       8 
8 
     | 
    
         | 
| 
       9 
9 
     | 
    
         
             
            GEM
         
     | 
| 
       10 
10 
     | 
    
         
             
              remote: https://rubygems.org/
         
     | 
| 
       11 
11 
     | 
    
         
             
              specs:
         
     | 
| 
       12 
     | 
    
         
            -
                actioncable (5.0. 
     | 
| 
       13 
     | 
    
         
            -
                  actionpack (= 5.0. 
     | 
| 
      
 12 
     | 
    
         
            +
                actioncable (5.0.7)
         
     | 
| 
      
 13 
     | 
    
         
            +
                  actionpack (= 5.0.7)
         
     | 
| 
       14 
14 
     | 
    
         
             
                  nio4r (>= 1.2, < 3.0)
         
     | 
| 
       15 
15 
     | 
    
         
             
                  websocket-driver (~> 0.6.1)
         
     | 
| 
       16 
     | 
    
         
            -
                actionmailer (5.0. 
     | 
| 
       17 
     | 
    
         
            -
                  actionpack (= 5.0. 
     | 
| 
       18 
     | 
    
         
            -
                  actionview (= 5.0. 
     | 
| 
       19 
     | 
    
         
            -
                  activejob (= 5.0. 
     | 
| 
      
 16 
     | 
    
         
            +
                actionmailer (5.0.7)
         
     | 
| 
      
 17 
     | 
    
         
            +
                  actionpack (= 5.0.7)
         
     | 
| 
      
 18 
     | 
    
         
            +
                  actionview (= 5.0.7)
         
     | 
| 
      
 19 
     | 
    
         
            +
                  activejob (= 5.0.7)
         
     | 
| 
       20 
20 
     | 
    
         
             
                  mail (~> 2.5, >= 2.5.4)
         
     | 
| 
       21 
21 
     | 
    
         
             
                  rails-dom-testing (~> 2.0)
         
     | 
| 
       22 
     | 
    
         
            -
                actionpack (5.0. 
     | 
| 
       23 
     | 
    
         
            -
                  actionview (= 5.0. 
     | 
| 
       24 
     | 
    
         
            -
                  activesupport (= 5.0. 
     | 
| 
      
 22 
     | 
    
         
            +
                actionpack (5.0.7)
         
     | 
| 
      
 23 
     | 
    
         
            +
                  actionview (= 5.0.7)
         
     | 
| 
      
 24 
     | 
    
         
            +
                  activesupport (= 5.0.7)
         
     | 
| 
       25 
25 
     | 
    
         
             
                  rack (~> 2.0)
         
     | 
| 
       26 
26 
     | 
    
         
             
                  rack-test (~> 0.6.3)
         
     | 
| 
       27 
27 
     | 
    
         
             
                  rails-dom-testing (~> 2.0)
         
     | 
| 
       28 
28 
     | 
    
         
             
                  rails-html-sanitizer (~> 1.0, >= 1.0.2)
         
     | 
| 
       29 
     | 
    
         
            -
                actionview (5.0. 
     | 
| 
       30 
     | 
    
         
            -
                  activesupport (= 5.0. 
     | 
| 
      
 29 
     | 
    
         
            +
                actionview (5.0.7)
         
     | 
| 
      
 30 
     | 
    
         
            +
                  activesupport (= 5.0.7)
         
     | 
| 
       31 
31 
     | 
    
         
             
                  builder (~> 3.1)
         
     | 
| 
       32 
32 
     | 
    
         
             
                  erubis (~> 2.7.0)
         
     | 
| 
       33 
33 
     | 
    
         
             
                  rails-dom-testing (~> 2.0)
         
     | 
| 
       34 
34 
     | 
    
         
             
                  rails-html-sanitizer (~> 1.0, >= 1.0.3)
         
     | 
| 
       35 
     | 
    
         
            -
                activejob (5.0. 
     | 
| 
       36 
     | 
    
         
            -
                  activesupport (= 5.0. 
     | 
| 
      
 35 
     | 
    
         
            +
                activejob (5.0.7)
         
     | 
| 
      
 36 
     | 
    
         
            +
                  activesupport (= 5.0.7)
         
     | 
| 
       37 
37 
     | 
    
         
             
                  globalid (>= 0.3.6)
         
     | 
| 
       38 
     | 
    
         
            -
                activemodel (5.0. 
     | 
| 
       39 
     | 
    
         
            -
                  activesupport (= 5.0. 
     | 
| 
       40 
     | 
    
         
            -
                activerecord (5.0. 
     | 
| 
       41 
     | 
    
         
            -
                  activemodel (= 5.0. 
     | 
| 
       42 
     | 
    
         
            -
                  activesupport (= 5.0. 
     | 
| 
      
 38 
     | 
    
         
            +
                activemodel (5.0.7)
         
     | 
| 
      
 39 
     | 
    
         
            +
                  activesupport (= 5.0.7)
         
     | 
| 
      
 40 
     | 
    
         
            +
                activerecord (5.0.7)
         
     | 
| 
      
 41 
     | 
    
         
            +
                  activemodel (= 5.0.7)
         
     | 
| 
      
 42 
     | 
    
         
            +
                  activesupport (= 5.0.7)
         
     | 
| 
       43 
43 
     | 
    
         
             
                  arel (~> 7.0)
         
     | 
| 
       44 
     | 
    
         
            -
                activesupport (5.0. 
     | 
| 
      
 44 
     | 
    
         
            +
                activesupport (5.0.7)
         
     | 
| 
       45 
45 
     | 
    
         
             
                  concurrent-ruby (~> 1.0, >= 1.0.2)
         
     | 
| 
       46 
     | 
    
         
            -
                  i18n ( 
     | 
| 
      
 46 
     | 
    
         
            +
                  i18n (>= 0.7, < 2)
         
     | 
| 
       47 
47 
     | 
    
         
             
                  minitest (~> 5.1)
         
     | 
| 
       48 
48 
     | 
    
         
             
                  tzinfo (~> 1.1)
         
     | 
| 
       49 
49 
     | 
    
         
             
                ammeter (1.1.4)
         
     | 
| 
         @@ -51,8 +51,8 @@ GEM 
     | 
|
| 
       51 
51 
     | 
    
         
             
                  railties (>= 3.0)
         
     | 
| 
       52 
52 
     | 
    
         
             
                  rspec-rails (>= 2.2)
         
     | 
| 
       53 
53 
     | 
    
         
             
                arel (7.1.4)
         
     | 
| 
       54 
     | 
    
         
            -
                aws-partitions (1. 
     | 
| 
       55 
     | 
    
         
            -
                aws-sdk-core (3. 
     | 
| 
      
 54 
     | 
    
         
            +
                aws-partitions (1.83.0)
         
     | 
| 
      
 55 
     | 
    
         
            +
                aws-sdk-core (3.20.2)
         
     | 
| 
       56 
56 
     | 
    
         
             
                  aws-partitions (~> 1.0)
         
     | 
| 
       57 
57 
     | 
    
         
             
                  aws-sigv4 (~> 1.0)
         
     | 
| 
       58 
58 
     | 
    
         
             
                  jmespath (~> 1.0)
         
     | 
| 
         @@ -61,11 +61,11 @@ GEM 
     | 
|
| 
       61 
61 
     | 
    
         
             
                  aws-sigv4 (~> 1.0)
         
     | 
| 
       62 
62 
     | 
    
         
             
                aws-sigv4 (1.0.2)
         
     | 
| 
       63 
63 
     | 
    
         
             
                bcrypt (3.1.11)
         
     | 
| 
       64 
     | 
    
         
            -
                bson (4. 
     | 
| 
      
 64 
     | 
    
         
            +
                bson (4.3.0)
         
     | 
| 
       65 
65 
     | 
    
         
             
                builder (3.2.3)
         
     | 
| 
       66 
     | 
    
         
            -
                bullet (5. 
     | 
| 
      
 66 
     | 
    
         
            +
                bullet (5.7.5)
         
     | 
| 
       67 
67 
     | 
    
         
             
                  activesupport (>= 3.0.0)
         
     | 
| 
       68 
     | 
    
         
            -
                  uniform_notifier (~> 1. 
     | 
| 
      
 68 
     | 
    
         
            +
                  uniform_notifier (~> 1.11.0)
         
     | 
| 
       69 
69 
     | 
    
         
             
                concurrent-ruby (1.0.5)
         
     | 
| 
       70 
70 
     | 
    
         
             
                coveralls (0.8.21)
         
     | 
| 
       71 
71 
     | 
    
         
             
                  json (>= 1.8, < 3)
         
     | 
| 
         @@ -73,19 +73,19 @@ GEM 
     | 
|
| 
       73 
73 
     | 
    
         
             
                  term-ansicolor (~> 1.3)
         
     | 
| 
       74 
74 
     | 
    
         
             
                  thor (~> 0.19.4)
         
     | 
| 
       75 
75 
     | 
    
         
             
                  tins (~> 1.6)
         
     | 
| 
       76 
     | 
    
         
            -
                crass (1.0. 
     | 
| 
       77 
     | 
    
         
            -
                devise (4.3 
     | 
| 
      
 76 
     | 
    
         
            +
                crass (1.0.4)
         
     | 
| 
      
 77 
     | 
    
         
            +
                devise (4.4.3)
         
     | 
| 
       78 
78 
     | 
    
         
             
                  bcrypt (~> 3.0)
         
     | 
| 
       79 
79 
     | 
    
         
             
                  orm_adapter (~> 0.1)
         
     | 
| 
       80 
     | 
    
         
            -
                  railties (>= 4.1.0, <  
     | 
| 
      
 80 
     | 
    
         
            +
                  railties (>= 4.1.0, < 6.0)
         
     | 
| 
       81 
81 
     | 
    
         
             
                  responders
         
     | 
| 
       82 
82 
     | 
    
         
             
                  warden (~> 1.2.3)
         
     | 
| 
       83 
83 
     | 
    
         
             
                diff-lcs (1.3)
         
     | 
| 
       84 
84 
     | 
    
         
             
                docile (1.1.5)
         
     | 
| 
       85 
     | 
    
         
            -
                dotenv (2. 
     | 
| 
       86 
     | 
    
         
            -
                dotenv-rails (2. 
     | 
| 
       87 
     | 
    
         
            -
                  dotenv (= 2. 
     | 
| 
       88 
     | 
    
         
            -
                  railties (>= 3.2, <  
     | 
| 
      
 85 
     | 
    
         
            +
                dotenv (2.4.0)
         
     | 
| 
      
 86 
     | 
    
         
            +
                dotenv-rails (2.4.0)
         
     | 
| 
      
 87 
     | 
    
         
            +
                  dotenv (= 2.4.0)
         
     | 
| 
      
 88 
     | 
    
         
            +
                  railties (>= 3.2, < 6.0)
         
     | 
| 
       89 
89 
     | 
    
         
             
                erubis (2.7.0)
         
     | 
| 
       90 
90 
     | 
    
         
             
                factory_bot (4.8.2)
         
     | 
| 
       91 
91 
     | 
    
         
             
                  activesupport (>= 3.0.0)
         
     | 
| 
         @@ -94,15 +94,15 @@ GEM 
     | 
|
| 
       94 
94 
     | 
    
         
             
                  railties (>= 3.0.0)
         
     | 
| 
       95 
95 
     | 
    
         
             
                globalid (0.4.1)
         
     | 
| 
       96 
96 
     | 
    
         
             
                  activesupport (>= 4.2.0)
         
     | 
| 
       97 
     | 
    
         
            -
                i18n (0. 
     | 
| 
      
 97 
     | 
    
         
            +
                i18n (1.0.1)
         
     | 
| 
       98 
98 
     | 
    
         
             
                  concurrent-ruby (~> 1.0)
         
     | 
| 
       99 
     | 
    
         
            -
                jmespath (1. 
     | 
| 
       100 
     | 
    
         
            -
                jquery-rails (4.3. 
     | 
| 
      
 99 
     | 
    
         
            +
                jmespath (1.4.0)
         
     | 
| 
      
 100 
     | 
    
         
            +
                jquery-rails (4.3.3)
         
     | 
| 
       101 
101 
     | 
    
         
             
                  rails-dom-testing (>= 1, < 3)
         
     | 
| 
       102 
102 
     | 
    
         
             
                  railties (>= 4.2.0)
         
     | 
| 
       103 
103 
     | 
    
         
             
                  thor (>= 0.14, < 2.0)
         
     | 
| 
       104 
104 
     | 
    
         
             
                json (2.1.0)
         
     | 
| 
       105 
     | 
    
         
            -
                loofah (2. 
     | 
| 
      
 105 
     | 
    
         
            +
                loofah (2.2.2)
         
     | 
| 
       106 
106 
     | 
    
         
             
                  crass (~> 1.0.2)
         
     | 
| 
       107 
107 
     | 
    
         
             
                  nokogiri (>= 1.5.9)
         
     | 
| 
       108 
108 
     | 
    
         
             
                mail (2.7.0)
         
     | 
| 
         @@ -110,32 +110,32 @@ GEM 
     | 
|
| 
       110 
110 
     | 
    
         
             
                method_source (0.9.0)
         
     | 
| 
       111 
111 
     | 
    
         
             
                mini_mime (1.0.0)
         
     | 
| 
       112 
112 
     | 
    
         
             
                mini_portile2 (2.3.0)
         
     | 
| 
       113 
     | 
    
         
            -
                minitest (5. 
     | 
| 
       114 
     | 
    
         
            -
                mongo (2. 
     | 
| 
       115 
     | 
    
         
            -
                  bson (>= 4. 
     | 
| 
      
 113 
     | 
    
         
            +
                minitest (5.11.3)
         
     | 
| 
      
 114 
     | 
    
         
            +
                mongo (2.5.3)
         
     | 
| 
      
 115 
     | 
    
         
            +
                  bson (>= 4.3.0, < 5.0.0)
         
     | 
| 
       116 
116 
     | 
    
         
             
                mongoid (6.1.1)
         
     | 
| 
       117 
117 
     | 
    
         
             
                  activemodel (~> 5.0)
         
     | 
| 
       118 
118 
     | 
    
         
             
                  mongo (>= 2.4.1, < 3.0.0)
         
     | 
| 
       119 
     | 
    
         
            -
                mysql2 (0. 
     | 
| 
       120 
     | 
    
         
            -
                nio4r (2.1 
     | 
| 
       121 
     | 
    
         
            -
                nokogiri (1.8. 
     | 
| 
      
 119 
     | 
    
         
            +
                mysql2 (0.5.1)
         
     | 
| 
      
 120 
     | 
    
         
            +
                nio4r (2.3.1)
         
     | 
| 
      
 121 
     | 
    
         
            +
                nokogiri (1.8.2)
         
     | 
| 
       122 
122 
     | 
    
         
             
                  mini_portile2 (~> 2.3.0)
         
     | 
| 
       123 
123 
     | 
    
         
             
                orm_adapter (0.5.0)
         
     | 
| 
       124 
     | 
    
         
            -
                pg (0. 
     | 
| 
       125 
     | 
    
         
            -
                rack (2.0. 
     | 
| 
      
 124 
     | 
    
         
            +
                pg (1.0.0)
         
     | 
| 
      
 125 
     | 
    
         
            +
                rack (2.0.5)
         
     | 
| 
       126 
126 
     | 
    
         
             
                rack-test (0.6.3)
         
     | 
| 
       127 
127 
     | 
    
         
             
                  rack (>= 1.0)
         
     | 
| 
       128 
     | 
    
         
            -
                rails (5.0. 
     | 
| 
       129 
     | 
    
         
            -
                  actioncable (= 5.0. 
     | 
| 
       130 
     | 
    
         
            -
                  actionmailer (= 5.0. 
     | 
| 
       131 
     | 
    
         
            -
                  actionpack (= 5.0. 
     | 
| 
       132 
     | 
    
         
            -
                  actionview (= 5.0. 
     | 
| 
       133 
     | 
    
         
            -
                  activejob (= 5.0. 
     | 
| 
       134 
     | 
    
         
            -
                  activemodel (= 5.0. 
     | 
| 
       135 
     | 
    
         
            -
                  activerecord (= 5.0. 
     | 
| 
       136 
     | 
    
         
            -
                  activesupport (= 5.0. 
     | 
| 
      
 128 
     | 
    
         
            +
                rails (5.0.7)
         
     | 
| 
      
 129 
     | 
    
         
            +
                  actioncable (= 5.0.7)
         
     | 
| 
      
 130 
     | 
    
         
            +
                  actionmailer (= 5.0.7)
         
     | 
| 
      
 131 
     | 
    
         
            +
                  actionpack (= 5.0.7)
         
     | 
| 
      
 132 
     | 
    
         
            +
                  actionview (= 5.0.7)
         
     | 
| 
      
 133 
     | 
    
         
            +
                  activejob (= 5.0.7)
         
     | 
| 
      
 134 
     | 
    
         
            +
                  activemodel (= 5.0.7)
         
     | 
| 
      
 135 
     | 
    
         
            +
                  activerecord (= 5.0.7)
         
     | 
| 
      
 136 
     | 
    
         
            +
                  activesupport (= 5.0.7)
         
     | 
| 
       137 
137 
     | 
    
         
             
                  bundler (>= 1.3.0)
         
     | 
| 
       138 
     | 
    
         
            -
                  railties (= 5.0. 
     | 
| 
      
 138 
     | 
    
         
            +
                  railties (= 5.0.7)
         
     | 
| 
       139 
139 
     | 
    
         
             
                  sprockets-rails (>= 2.0.0)
         
     | 
| 
       140 
140 
     | 
    
         
             
                rails-controller-testing (1.0.2)
         
     | 
| 
       141 
141 
     | 
    
         
             
                  actionpack (~> 5.x, >= 5.0.1)
         
     | 
| 
         @@ -144,19 +144,19 @@ GEM 
     | 
|
| 
       144 
144 
     | 
    
         
             
                rails-dom-testing (2.0.3)
         
     | 
| 
       145 
145 
     | 
    
         
             
                  activesupport (>= 4.2.0)
         
     | 
| 
       146 
146 
     | 
    
         
             
                  nokogiri (>= 1.6)
         
     | 
| 
       147 
     | 
    
         
            -
                rails-html-sanitizer (1.0. 
     | 
| 
       148 
     | 
    
         
            -
                  loofah (~> 2. 
     | 
| 
       149 
     | 
    
         
            -
                railties (5.0. 
     | 
| 
       150 
     | 
    
         
            -
                  actionpack (= 5.0. 
     | 
| 
       151 
     | 
    
         
            -
                  activesupport (= 5.0. 
     | 
| 
      
 147 
     | 
    
         
            +
                rails-html-sanitizer (1.0.4)
         
     | 
| 
      
 148 
     | 
    
         
            +
                  loofah (~> 2.2, >= 2.2.2)
         
     | 
| 
      
 149 
     | 
    
         
            +
                railties (5.0.7)
         
     | 
| 
      
 150 
     | 
    
         
            +
                  actionpack (= 5.0.7)
         
     | 
| 
      
 151 
     | 
    
         
            +
                  activesupport (= 5.0.7)
         
     | 
| 
       152 
152 
     | 
    
         
             
                  method_source
         
     | 
| 
       153 
153 
     | 
    
         
             
                  rake (>= 0.8.7)
         
     | 
| 
       154 
154 
     | 
    
         
             
                  thor (>= 0.18.1, < 2.0)
         
     | 
| 
       155 
     | 
    
         
            -
                rake (12.3. 
     | 
| 
      
 155 
     | 
    
         
            +
                rake (12.3.1)
         
     | 
| 
       156 
156 
     | 
    
         
             
                responders (2.4.0)
         
     | 
| 
       157 
157 
     | 
    
         
             
                  actionpack (>= 4.2.0, < 5.3)
         
     | 
| 
       158 
158 
     | 
    
         
             
                  railties (>= 4.2.0, < 5.3)
         
     | 
| 
       159 
     | 
    
         
            -
                rspec-core (3.7. 
     | 
| 
      
 159 
     | 
    
         
            +
                rspec-core (3.7.1)
         
     | 
| 
       160 
160 
     | 
    
         
             
                  rspec-support (~> 3.7.0)
         
     | 
| 
       161 
161 
     | 
    
         
             
                rspec-expectations (3.7.0)
         
     | 
| 
       162 
162 
     | 
    
         
             
                  diff-lcs (>= 1.2.0, < 2.0)
         
     | 
| 
         @@ -164,7 +164,7 @@ GEM 
     | 
|
| 
       164 
164 
     | 
    
         
             
                rspec-mocks (3.7.0)
         
     | 
| 
       165 
165 
     | 
    
         
             
                  diff-lcs (>= 1.2.0, < 2.0)
         
     | 
| 
       166 
166 
     | 
    
         
             
                  rspec-support (~> 3.7.0)
         
     | 
| 
       167 
     | 
    
         
            -
                rspec-rails (3.7. 
     | 
| 
      
 167 
     | 
    
         
            +
                rspec-rails (3.7.2)
         
     | 
| 
       168 
168 
     | 
    
         
             
                  actionpack (>= 3.0)
         
     | 
| 
       169 
169 
     | 
    
         
             
                  activesupport (>= 3.0)
         
     | 
| 
       170 
170 
     | 
    
         
             
                  railties (>= 3.0)
         
     | 
| 
         @@ -172,13 +172,13 @@ GEM 
     | 
|
| 
       172 
172 
     | 
    
         
             
                  rspec-expectations (~> 3.7.0)
         
     | 
| 
       173 
173 
     | 
    
         
             
                  rspec-mocks (~> 3.7.0)
         
     | 
| 
       174 
174 
     | 
    
         
             
                  rspec-support (~> 3.7.0)
         
     | 
| 
       175 
     | 
    
         
            -
                rspec-support (3.7. 
     | 
| 
      
 175 
     | 
    
         
            +
                rspec-support (3.7.1)
         
     | 
| 
       176 
176 
     | 
    
         
             
                simplecov (0.14.1)
         
     | 
| 
       177 
177 
     | 
    
         
             
                  docile (~> 1.1.0)
         
     | 
| 
       178 
178 
     | 
    
         
             
                  json (>= 1.8, < 3)
         
     | 
| 
       179 
179 
     | 
    
         
             
                  simplecov-html (~> 0.10.0)
         
     | 
| 
       180 
180 
     | 
    
         
             
                simplecov-html (0.10.2)
         
     | 
| 
       181 
     | 
    
         
            -
                slack-notifier (2.3. 
     | 
| 
      
 181 
     | 
    
         
            +
                slack-notifier (2.3.2)
         
     | 
| 
       182 
182 
     | 
    
         
             
                sprockets (3.7.1)
         
     | 
| 
       183 
183 
     | 
    
         
             
                  concurrent-ruby (~> 1.0)
         
     | 
| 
       184 
184 
     | 
    
         
             
                  rack (> 1, < 3)
         
     | 
| 
         @@ -192,16 +192,16 @@ GEM 
     | 
|
| 
       192 
192 
     | 
    
         
             
                thor (0.19.4)
         
     | 
| 
       193 
193 
     | 
    
         
             
                thread_safe (0.3.6)
         
     | 
| 
       194 
194 
     | 
    
         
             
                timecop (0.9.1)
         
     | 
| 
       195 
     | 
    
         
            -
                tins (1. 
     | 
| 
       196 
     | 
    
         
            -
                tzinfo (1.2. 
     | 
| 
      
 195 
     | 
    
         
            +
                tins (1.16.3)
         
     | 
| 
      
 196 
     | 
    
         
            +
                tzinfo (1.2.5)
         
     | 
| 
       197 
197 
     | 
    
         
             
                  thread_safe (~> 0.1)
         
     | 
| 
       198 
     | 
    
         
            -
                uniform_notifier (1. 
     | 
| 
      
 198 
     | 
    
         
            +
                uniform_notifier (1.11.0)
         
     | 
| 
       199 
199 
     | 
    
         
             
                warden (1.2.7)
         
     | 
| 
       200 
200 
     | 
    
         
             
                  rack (>= 1.0)
         
     | 
| 
       201 
201 
     | 
    
         
             
                websocket-driver (0.6.5)
         
     | 
| 
       202 
202 
     | 
    
         
             
                  websocket-extensions (>= 0.1.0)
         
     | 
| 
       203 
203 
     | 
    
         
             
                websocket-extensions (0.1.3)
         
     | 
| 
       204 
     | 
    
         
            -
                yard (0.9. 
     | 
| 
      
 204 
     | 
    
         
            +
                yard (0.9.12)
         
     | 
| 
       205 
205 
     | 
    
         
             
                yard-activesupport-concern (0.0.1)
         
     | 
| 
       206 
206 
     | 
    
         
             
                  yard (>= 0.8)
         
     | 
| 
       207 
207 
     | 
    
         | 
| 
         @@ -214,20 +214,20 @@ DEPENDENCIES 
     | 
|
| 
       214 
214 
     | 
    
         
             
              aws-sdk-sns (~> 1)
         
     | 
| 
       215 
215 
     | 
    
         
             
              bullet
         
     | 
| 
       216 
216 
     | 
    
         
             
              coveralls
         
     | 
| 
       217 
     | 
    
         
            -
              devise (~> 4.3 
     | 
| 
      
 217 
     | 
    
         
            +
              devise (~> 4.4.3)
         
     | 
| 
       218 
218 
     | 
    
         
             
              dotenv-rails
         
     | 
| 
       219 
219 
     | 
    
         
             
              factory_bot_rails (~> 4.8.2)
         
     | 
| 
       220 
220 
     | 
    
         
             
              mongoid (>= 4.0.0)
         
     | 
| 
       221 
     | 
    
         
            -
              mysql2 (~> 0. 
     | 
| 
       222 
     | 
    
         
            -
              pg (~> 0. 
     | 
| 
      
 221 
     | 
    
         
            +
              mysql2 (~> 0.5.1)
         
     | 
| 
      
 222 
     | 
    
         
            +
              pg (~> 1.0.0)
         
     | 
| 
       223 
223 
     | 
    
         
             
              rails (~> 5.0.0)
         
     | 
| 
       224 
224 
     | 
    
         
             
              rails-controller-testing
         
     | 
| 
       225 
     | 
    
         
            -
              rspec-rails (~> 3.7. 
     | 
| 
      
 225 
     | 
    
         
            +
              rspec-rails (~> 3.7.2)
         
     | 
| 
       226 
226 
     | 
    
         
             
              simplecov (~> 0)
         
     | 
| 
       227 
227 
     | 
    
         
             
              slack-notifier (>= 1.5.1)
         
     | 
| 
       228 
228 
     | 
    
         
             
              sqlite3 (~> 1.3.13)
         
     | 
| 
       229 
229 
     | 
    
         
             
              timecop
         
     | 
| 
       230 
     | 
    
         
            -
              yard (~> 0.9. 
     | 
| 
      
 230 
     | 
    
         
            +
              yard (~> 0.9.12)
         
     | 
| 
       231 
231 
     | 
    
         
             
              yard-activesupport-concern (~> 0.0.1)
         
     | 
| 
       232 
232 
     | 
    
         | 
| 
       233 
233 
     | 
    
         
             
            BUNDLED WITH
         
     |