bell 0.0.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.
- data/.gitignore +5 -0
 - data/.rvmrc +1 -0
 - data/Gemfile +2 -0
 - data/Gemfile.lock +47 -0
 - data/MIT-LICENSE +20 -0
 - data/README.org +128 -0
 - data/Rakefile +16 -0
 - data/bell.gemspec +30 -0
 - data/bin/bell +5 -0
 - data/features/create_user.feature +16 -0
 - data/features/full_report.feature +84 -0
 - data/features/import_public_contacts.feature +20 -0
 - data/features/import_user_contacts.feature +43 -0
 - data/features/list_all_contacts.feature +19 -0
 - data/features/list_user_contacts.feature +27 -0
 - data/features/list_users.feature +22 -0
 - data/features/remove_user.feature +21 -0
 - data/features/rename_user.feature +25 -0
 - data/features/step_definitions/cli_steps.rb +59 -0
 - data/features/step_definitions/contact_steps.rb +104 -0
 - data/features/step_definitions/database_steps.rb +3 -0
 - data/features/step_definitions/report_steps.rb +17 -0
 - data/features/step_definitions/user_steps.rb +71 -0
 - data/features/support/env.rb +65 -0
 - data/features/user_report.feature +67 -0
 - data/lib/bell/cli.rb +12 -0
 - data/lib/bell/commands/command.rb +58 -0
 - data/lib/bell/commands/contact_command.rb +91 -0
 - data/lib/bell/commands/implosion_command.rb +14 -0
 - data/lib/bell/commands/report_command.rb +69 -0
 - data/lib/bell/commands/user_command.rb +74 -0
 - data/lib/bell/commands.rb +5 -0
 - data/lib/bell/csv_parser.rb +52 -0
 - data/lib/bell/dispatcher.rb +13 -0
 - data/lib/bell/displayable.rb +13 -0
 - data/lib/bell/full_report.rb +145 -0
 - data/lib/bell/handlers/contacts_handler.rb +79 -0
 - data/lib/bell/handlers/implosions_handler.rb +9 -0
 - data/lib/bell/handlers/reports_handler.rb +41 -0
 - data/lib/bell/handlers/users_handler.rb +50 -0
 - data/lib/bell/handlers.rb +4 -0
 - data/lib/bell/message.rb +115 -0
 - data/lib/bell/public_contact.rb +17 -0
 - data/lib/bell/user.rb +16 -0
 - data/lib/bell/user_contact.rb +18 -0
 - data/lib/bell/user_report.rb +88 -0
 - data/lib/bell/util.rb +31 -0
 - data/lib/bell.rb +157 -0
 - data/spec/bell/cli_spec.rb +4 -0
 - data/spec/bell/commands/command_spec.rb +59 -0
 - data/spec/bell/commands/contact_command_spec.rb +112 -0
 - data/spec/bell/commands/implosion_command_spec.rb +31 -0
 - data/spec/bell/commands/report_command_spec.rb +71 -0
 - data/spec/bell/commands/user_command_spec.rb +128 -0
 - data/spec/bell/csv_parser_spec.rb +167 -0
 - data/spec/bell/dispatcher_spec.rb +4 -0
 - data/spec/bell/full_report_spec.rb +4 -0
 - data/spec/bell/handlers/contacts_handler_spec.rb +160 -0
 - data/spec/bell/handlers/implosions_handler_spec.rb +11 -0
 - data/spec/bell/handlers/reports_handler_spec.rb +183 -0
 - data/spec/bell/handlers/users_handler_spec.rb +94 -0
 - data/spec/bell/public_contact_spec.rb +4 -0
 - data/spec/bell/user_contact_spec.rb +4 -0
 - data/spec/bell/user_report_spec.rb +4 -0
 - data/spec/bell/user_spec.rb +4 -0
 - data/spec/spec_helper.rb +21 -0
 - metadata +230 -0
 
    
        metadata
    ADDED
    
    | 
         @@ -0,0 +1,230 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification 
         
     | 
| 
      
 2 
     | 
    
         
            +
            name: bell
         
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version 
         
     | 
| 
      
 4 
     | 
    
         
            +
              prerelease: 
         
     | 
| 
      
 5 
     | 
    
         
            +
              version: 0.0.1
         
     | 
| 
      
 6 
     | 
    
         
            +
            platform: ruby
         
     | 
| 
      
 7 
     | 
    
         
            +
            authors: 
         
     | 
| 
      
 8 
     | 
    
         
            +
            - Murilo Pereira
         
     | 
| 
      
 9 
     | 
    
         
            +
            autorequire: 
         
     | 
| 
      
 10 
     | 
    
         
            +
            bindir: bin
         
     | 
| 
      
 11 
     | 
    
         
            +
            cert_chain: []
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            date: 2011-05-04 00:00:00 -03:00
         
     | 
| 
      
 14 
     | 
    
         
            +
            default_executable: 
         
     | 
| 
      
 15 
     | 
    
         
            +
            dependencies: 
         
     | 
| 
      
 16 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 17 
     | 
    
         
            +
              name: bundler
         
     | 
| 
      
 18 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 19 
     | 
    
         
            +
              requirement: &id001 !ruby/object:Gem::Requirement 
         
     | 
| 
      
 20 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 21 
     | 
    
         
            +
                requirements: 
         
     | 
| 
      
 22 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 23 
     | 
    
         
            +
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 24 
     | 
    
         
            +
                    version: 1.0.0
         
     | 
| 
      
 25 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 26 
     | 
    
         
            +
              version_requirements: *id001
         
     | 
| 
      
 27 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 28 
     | 
    
         
            +
              name: cucumber
         
     | 
| 
      
 29 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 30 
     | 
    
         
            +
              requirement: &id002 !ruby/object:Gem::Requirement 
         
     | 
| 
      
 31 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 32 
     | 
    
         
            +
                requirements: 
         
     | 
| 
      
 33 
     | 
    
         
            +
                - - "="
         
     | 
| 
      
 34 
     | 
    
         
            +
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 35 
     | 
    
         
            +
                    version: 0.10.2
         
     | 
| 
      
 36 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 37 
     | 
    
         
            +
              version_requirements: *id002
         
     | 
| 
      
 38 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 39 
     | 
    
         
            +
              name: rake
         
     | 
| 
      
 40 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 41 
     | 
    
         
            +
              requirement: &id003 !ruby/object:Gem::Requirement 
         
     | 
| 
      
 42 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 43 
     | 
    
         
            +
                requirements: 
         
     | 
| 
      
 44 
     | 
    
         
            +
                - - "="
         
     | 
| 
      
 45 
     | 
    
         
            +
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 46 
     | 
    
         
            +
                    version: 0.8.7
         
     | 
| 
      
 47 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 48 
     | 
    
         
            +
              version_requirements: *id003
         
     | 
| 
      
 49 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 50 
     | 
    
         
            +
              name: rspec
         
     | 
| 
      
 51 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 52 
     | 
    
         
            +
              requirement: &id004 !ruby/object:Gem::Requirement 
         
     | 
| 
      
 53 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 54 
     | 
    
         
            +
                requirements: 
         
     | 
| 
      
 55 
     | 
    
         
            +
                - - "="
         
     | 
| 
      
 56 
     | 
    
         
            +
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 57 
     | 
    
         
            +
                    version: 2.5.0
         
     | 
| 
      
 58 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 59 
     | 
    
         
            +
              version_requirements: *id004
         
     | 
| 
      
 60 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 61 
     | 
    
         
            +
              name: embratel
         
     | 
| 
      
 62 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 63 
     | 
    
         
            +
              requirement: &id005 !ruby/object:Gem::Requirement 
         
     | 
| 
      
 64 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 65 
     | 
    
         
            +
                requirements: 
         
     | 
| 
      
 66 
     | 
    
         
            +
                - - "="
         
     | 
| 
      
 67 
     | 
    
         
            +
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 68 
     | 
    
         
            +
                    version: 1.1.2
         
     | 
| 
      
 69 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 70 
     | 
    
         
            +
              version_requirements: *id005
         
     | 
| 
      
 71 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 72 
     | 
    
         
            +
              name: sequel
         
     | 
| 
      
 73 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 74 
     | 
    
         
            +
              requirement: &id006 !ruby/object:Gem::Requirement 
         
     | 
| 
      
 75 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 76 
     | 
    
         
            +
                requirements: 
         
     | 
| 
      
 77 
     | 
    
         
            +
                - - "="
         
     | 
| 
      
 78 
     | 
    
         
            +
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 79 
     | 
    
         
            +
                    version: 3.23.0
         
     | 
| 
      
 80 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 81 
     | 
    
         
            +
              version_requirements: *id006
         
     | 
| 
      
 82 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 83 
     | 
    
         
            +
              name: sqlite3-ruby
         
     | 
| 
      
 84 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 85 
     | 
    
         
            +
              requirement: &id007 !ruby/object:Gem::Requirement 
         
     | 
| 
      
 86 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 87 
     | 
    
         
            +
                requirements: 
         
     | 
| 
      
 88 
     | 
    
         
            +
                - - "="
         
     | 
| 
      
 89 
     | 
    
         
            +
                  - !ruby/object:Gem::Version 
         
     | 
| 
      
 90 
     | 
    
         
            +
                    version: 1.3.3
         
     | 
| 
      
 91 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 92 
     | 
    
         
            +
              version_requirements: *id007
         
     | 
| 
      
 93 
     | 
    
         
            +
            description: 
         
     | 
| 
      
 94 
     | 
    
         
            +
            email: murilo@murilopereira.com
         
     | 
| 
      
 95 
     | 
    
         
            +
            executables: 
         
     | 
| 
      
 96 
     | 
    
         
            +
            - bell
         
     | 
| 
      
 97 
     | 
    
         
            +
            extensions: []
         
     | 
| 
      
 98 
     | 
    
         
            +
             
     | 
| 
      
 99 
     | 
    
         
            +
            extra_rdoc_files: []
         
     | 
| 
      
 100 
     | 
    
         
            +
             
     | 
| 
      
 101 
     | 
    
         
            +
            files: 
         
     | 
| 
      
 102 
     | 
    
         
            +
            - .gitignore
         
     | 
| 
      
 103 
     | 
    
         
            +
            - .rvmrc
         
     | 
| 
      
 104 
     | 
    
         
            +
            - Gemfile
         
     | 
| 
      
 105 
     | 
    
         
            +
            - Gemfile.lock
         
     | 
| 
      
 106 
     | 
    
         
            +
            - MIT-LICENSE
         
     | 
| 
      
 107 
     | 
    
         
            +
            - README.org
         
     | 
| 
      
 108 
     | 
    
         
            +
            - Rakefile
         
     | 
| 
      
 109 
     | 
    
         
            +
            - bell.gemspec
         
     | 
| 
      
 110 
     | 
    
         
            +
            - bin/bell
         
     | 
| 
      
 111 
     | 
    
         
            +
            - features/create_user.feature
         
     | 
| 
      
 112 
     | 
    
         
            +
            - features/full_report.feature
         
     | 
| 
      
 113 
     | 
    
         
            +
            - features/import_public_contacts.feature
         
     | 
| 
      
 114 
     | 
    
         
            +
            - features/import_user_contacts.feature
         
     | 
| 
      
 115 
     | 
    
         
            +
            - features/list_all_contacts.feature
         
     | 
| 
      
 116 
     | 
    
         
            +
            - features/list_user_contacts.feature
         
     | 
| 
      
 117 
     | 
    
         
            +
            - features/list_users.feature
         
     | 
| 
      
 118 
     | 
    
         
            +
            - features/remove_user.feature
         
     | 
| 
      
 119 
     | 
    
         
            +
            - features/rename_user.feature
         
     | 
| 
      
 120 
     | 
    
         
            +
            - features/step_definitions/cli_steps.rb
         
     | 
| 
      
 121 
     | 
    
         
            +
            - features/step_definitions/contact_steps.rb
         
     | 
| 
      
 122 
     | 
    
         
            +
            - features/step_definitions/database_steps.rb
         
     | 
| 
      
 123 
     | 
    
         
            +
            - features/step_definitions/report_steps.rb
         
     | 
| 
      
 124 
     | 
    
         
            +
            - features/step_definitions/user_steps.rb
         
     | 
| 
      
 125 
     | 
    
         
            +
            - features/support/env.rb
         
     | 
| 
      
 126 
     | 
    
         
            +
            - features/user_report.feature
         
     | 
| 
      
 127 
     | 
    
         
            +
            - lib/bell.rb
         
     | 
| 
      
 128 
     | 
    
         
            +
            - lib/bell/cli.rb
         
     | 
| 
      
 129 
     | 
    
         
            +
            - lib/bell/commands.rb
         
     | 
| 
      
 130 
     | 
    
         
            +
            - lib/bell/commands/command.rb
         
     | 
| 
      
 131 
     | 
    
         
            +
            - lib/bell/commands/contact_command.rb
         
     | 
| 
      
 132 
     | 
    
         
            +
            - lib/bell/commands/implosion_command.rb
         
     | 
| 
      
 133 
     | 
    
         
            +
            - lib/bell/commands/report_command.rb
         
     | 
| 
      
 134 
     | 
    
         
            +
            - lib/bell/commands/user_command.rb
         
     | 
| 
      
 135 
     | 
    
         
            +
            - lib/bell/csv_parser.rb
         
     | 
| 
      
 136 
     | 
    
         
            +
            - lib/bell/dispatcher.rb
         
     | 
| 
      
 137 
     | 
    
         
            +
            - lib/bell/displayable.rb
         
     | 
| 
      
 138 
     | 
    
         
            +
            - lib/bell/full_report.rb
         
     | 
| 
      
 139 
     | 
    
         
            +
            - lib/bell/handlers.rb
         
     | 
| 
      
 140 
     | 
    
         
            +
            - lib/bell/handlers/contacts_handler.rb
         
     | 
| 
      
 141 
     | 
    
         
            +
            - lib/bell/handlers/implosions_handler.rb
         
     | 
| 
      
 142 
     | 
    
         
            +
            - lib/bell/handlers/reports_handler.rb
         
     | 
| 
      
 143 
     | 
    
         
            +
            - lib/bell/handlers/users_handler.rb
         
     | 
| 
      
 144 
     | 
    
         
            +
            - lib/bell/message.rb
         
     | 
| 
      
 145 
     | 
    
         
            +
            - lib/bell/public_contact.rb
         
     | 
| 
      
 146 
     | 
    
         
            +
            - lib/bell/user.rb
         
     | 
| 
      
 147 
     | 
    
         
            +
            - lib/bell/user_contact.rb
         
     | 
| 
      
 148 
     | 
    
         
            +
            - lib/bell/user_report.rb
         
     | 
| 
      
 149 
     | 
    
         
            +
            - lib/bell/util.rb
         
     | 
| 
      
 150 
     | 
    
         
            +
            - spec/bell/cli_spec.rb
         
     | 
| 
      
 151 
     | 
    
         
            +
            - spec/bell/commands/command_spec.rb
         
     | 
| 
      
 152 
     | 
    
         
            +
            - spec/bell/commands/contact_command_spec.rb
         
     | 
| 
      
 153 
     | 
    
         
            +
            - spec/bell/commands/implosion_command_spec.rb
         
     | 
| 
      
 154 
     | 
    
         
            +
            - spec/bell/commands/report_command_spec.rb
         
     | 
| 
      
 155 
     | 
    
         
            +
            - spec/bell/commands/user_command_spec.rb
         
     | 
| 
      
 156 
     | 
    
         
            +
            - spec/bell/csv_parser_spec.rb
         
     | 
| 
      
 157 
     | 
    
         
            +
            - spec/bell/dispatcher_spec.rb
         
     | 
| 
      
 158 
     | 
    
         
            +
            - spec/bell/full_report_spec.rb
         
     | 
| 
      
 159 
     | 
    
         
            +
            - spec/bell/handlers/contacts_handler_spec.rb
         
     | 
| 
      
 160 
     | 
    
         
            +
            - spec/bell/handlers/implosions_handler_spec.rb
         
     | 
| 
      
 161 
     | 
    
         
            +
            - spec/bell/handlers/reports_handler_spec.rb
         
     | 
| 
      
 162 
     | 
    
         
            +
            - spec/bell/handlers/users_handler_spec.rb
         
     | 
| 
      
 163 
     | 
    
         
            +
            - spec/bell/public_contact_spec.rb
         
     | 
| 
      
 164 
     | 
    
         
            +
            - spec/bell/user_contact_spec.rb
         
     | 
| 
      
 165 
     | 
    
         
            +
            - spec/bell/user_report_spec.rb
         
     | 
| 
      
 166 
     | 
    
         
            +
            - spec/bell/user_spec.rb
         
     | 
| 
      
 167 
     | 
    
         
            +
            - spec/spec_helper.rb
         
     | 
| 
      
 168 
     | 
    
         
            +
            has_rdoc: true
         
     | 
| 
      
 169 
     | 
    
         
            +
            homepage: https://github.com/murilasso/bell
         
     | 
| 
      
 170 
     | 
    
         
            +
            licenses: []
         
     | 
| 
      
 171 
     | 
    
         
            +
             
     | 
| 
      
 172 
     | 
    
         
            +
            post_install_message: 
         
     | 
| 
      
 173 
     | 
    
         
            +
            rdoc_options: []
         
     | 
| 
      
 174 
     | 
    
         
            +
             
     | 
| 
      
 175 
     | 
    
         
            +
            require_paths: 
         
     | 
| 
      
 176 
     | 
    
         
            +
            - lib
         
     | 
| 
      
 177 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement 
         
     | 
| 
      
 178 
     | 
    
         
            +
              none: false
         
     | 
| 
      
 179 
     | 
    
         
            +
              requirements: 
         
     | 
| 
      
 180 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 181 
     | 
    
         
            +
                - !ruby/object:Gem::Version 
         
     | 
| 
      
 182 
     | 
    
         
            +
                  version: "0"
         
     | 
| 
      
 183 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement 
         
     | 
| 
      
 184 
     | 
    
         
            +
              none: false
         
     | 
| 
      
 185 
     | 
    
         
            +
              requirements: 
         
     | 
| 
      
 186 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 187 
     | 
    
         
            +
                - !ruby/object:Gem::Version 
         
     | 
| 
      
 188 
     | 
    
         
            +
                  version: 1.3.6
         
     | 
| 
      
 189 
     | 
    
         
            +
            requirements: []
         
     | 
| 
      
 190 
     | 
    
         
            +
             
     | 
| 
      
 191 
     | 
    
         
            +
            rubyforge_project: 
         
     | 
| 
      
 192 
     | 
    
         
            +
            rubygems_version: 1.6.2
         
     | 
| 
      
 193 
     | 
    
         
            +
            signing_key: 
         
     | 
| 
      
 194 
     | 
    
         
            +
            specification_version: 3
         
     | 
| 
      
 195 
     | 
    
         
            +
            summary: Tenha controle sobre as suas faturas de telefone da Embratel.
         
     | 
| 
      
 196 
     | 
    
         
            +
            test_files: 
         
     | 
| 
      
 197 
     | 
    
         
            +
            - features/create_user.feature
         
     | 
| 
      
 198 
     | 
    
         
            +
            - features/full_report.feature
         
     | 
| 
      
 199 
     | 
    
         
            +
            - features/import_public_contacts.feature
         
     | 
| 
      
 200 
     | 
    
         
            +
            - features/import_user_contacts.feature
         
     | 
| 
      
 201 
     | 
    
         
            +
            - features/list_all_contacts.feature
         
     | 
| 
      
 202 
     | 
    
         
            +
            - features/list_user_contacts.feature
         
     | 
| 
      
 203 
     | 
    
         
            +
            - features/list_users.feature
         
     | 
| 
      
 204 
     | 
    
         
            +
            - features/remove_user.feature
         
     | 
| 
      
 205 
     | 
    
         
            +
            - features/rename_user.feature
         
     | 
| 
      
 206 
     | 
    
         
            +
            - features/step_definitions/cli_steps.rb
         
     | 
| 
      
 207 
     | 
    
         
            +
            - features/step_definitions/contact_steps.rb
         
     | 
| 
      
 208 
     | 
    
         
            +
            - features/step_definitions/database_steps.rb
         
     | 
| 
      
 209 
     | 
    
         
            +
            - features/step_definitions/report_steps.rb
         
     | 
| 
      
 210 
     | 
    
         
            +
            - features/step_definitions/user_steps.rb
         
     | 
| 
      
 211 
     | 
    
         
            +
            - features/support/env.rb
         
     | 
| 
      
 212 
     | 
    
         
            +
            - features/user_report.feature
         
     | 
| 
      
 213 
     | 
    
         
            +
            - spec/bell/cli_spec.rb
         
     | 
| 
      
 214 
     | 
    
         
            +
            - spec/bell/commands/command_spec.rb
         
     | 
| 
      
 215 
     | 
    
         
            +
            - spec/bell/commands/contact_command_spec.rb
         
     | 
| 
      
 216 
     | 
    
         
            +
            - spec/bell/commands/implosion_command_spec.rb
         
     | 
| 
      
 217 
     | 
    
         
            +
            - spec/bell/commands/report_command_spec.rb
         
     | 
| 
      
 218 
     | 
    
         
            +
            - spec/bell/commands/user_command_spec.rb
         
     | 
| 
      
 219 
     | 
    
         
            +
            - spec/bell/csv_parser_spec.rb
         
     | 
| 
      
 220 
     | 
    
         
            +
            - spec/bell/dispatcher_spec.rb
         
     | 
| 
      
 221 
     | 
    
         
            +
            - spec/bell/full_report_spec.rb
         
     | 
| 
      
 222 
     | 
    
         
            +
            - spec/bell/handlers/contacts_handler_spec.rb
         
     | 
| 
      
 223 
     | 
    
         
            +
            - spec/bell/handlers/implosions_handler_spec.rb
         
     | 
| 
      
 224 
     | 
    
         
            +
            - spec/bell/handlers/reports_handler_spec.rb
         
     | 
| 
      
 225 
     | 
    
         
            +
            - spec/bell/handlers/users_handler_spec.rb
         
     | 
| 
      
 226 
     | 
    
         
            +
            - spec/bell/public_contact_spec.rb
         
     | 
| 
      
 227 
     | 
    
         
            +
            - spec/bell/user_contact_spec.rb
         
     | 
| 
      
 228 
     | 
    
         
            +
            - spec/bell/user_report_spec.rb
         
     | 
| 
      
 229 
     | 
    
         
            +
            - spec/bell/user_spec.rb
         
     | 
| 
      
 230 
     | 
    
         
            +
            - spec/spec_helper.rb
         
     |