├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin └── console ├── clearbit-slack.gemspec ├── lib └── clearbit │ ├── slack.rb │ └── slack │ ├── attachments │ ├── company.rb │ └── person.rb │ ├── configuration.rb │ ├── helpers.rb │ ├── notifier.rb │ └── version.rb └── spec ├── clearbit ├── slack │ ├── attachments │ │ ├── company_spec.rb │ │ └── person_spec.rb │ └── notifier_spec.rb └── slack_spec.rb ├── spec_helper.rb └── support ├── fixtures ├── company.json └── person.json └── helpers.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbit/clearbit-slack/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | rvm: 3 | - 2.1.5 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbit/clearbit-slack/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbit/clearbit-slack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbit/clearbit-slack/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbit/clearbit-slack/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbit/clearbit-slack/HEAD/bin/console -------------------------------------------------------------------------------- /clearbit-slack.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbit/clearbit-slack/HEAD/clearbit-slack.gemspec -------------------------------------------------------------------------------- /lib/clearbit/slack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbit/clearbit-slack/HEAD/lib/clearbit/slack.rb -------------------------------------------------------------------------------- /lib/clearbit/slack/attachments/company.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbit/clearbit-slack/HEAD/lib/clearbit/slack/attachments/company.rb -------------------------------------------------------------------------------- /lib/clearbit/slack/attachments/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbit/clearbit-slack/HEAD/lib/clearbit/slack/attachments/person.rb -------------------------------------------------------------------------------- /lib/clearbit/slack/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbit/clearbit-slack/HEAD/lib/clearbit/slack/configuration.rb -------------------------------------------------------------------------------- /lib/clearbit/slack/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbit/clearbit-slack/HEAD/lib/clearbit/slack/helpers.rb -------------------------------------------------------------------------------- /lib/clearbit/slack/notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbit/clearbit-slack/HEAD/lib/clearbit/slack/notifier.rb -------------------------------------------------------------------------------- /lib/clearbit/slack/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbit/clearbit-slack/HEAD/lib/clearbit/slack/version.rb -------------------------------------------------------------------------------- /spec/clearbit/slack/attachments/company_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbit/clearbit-slack/HEAD/spec/clearbit/slack/attachments/company_spec.rb -------------------------------------------------------------------------------- /spec/clearbit/slack/attachments/person_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbit/clearbit-slack/HEAD/spec/clearbit/slack/attachments/person_spec.rb -------------------------------------------------------------------------------- /spec/clearbit/slack/notifier_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbit/clearbit-slack/HEAD/spec/clearbit/slack/notifier_spec.rb -------------------------------------------------------------------------------- /spec/clearbit/slack_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbit/clearbit-slack/HEAD/spec/clearbit/slack_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbit/clearbit-slack/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/fixtures/company.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbit/clearbit-slack/HEAD/spec/support/fixtures/company.json -------------------------------------------------------------------------------- /spec/support/fixtures/person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbit/clearbit-slack/HEAD/spec/support/fixtures/person.json -------------------------------------------------------------------------------- /spec/support/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbit/clearbit-slack/HEAD/spec/support/helpers.rb --------------------------------------------------------------------------------