├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin └── test_service_hook ├── img ├── appaloosa-mono.png ├── appaloosa.png ├── asana-mono.png ├── asana.png ├── bitbucket-mono.png ├── bitbucket.png ├── campfire-mono.png ├── campfire.png ├── chatwork-mono.png ├── chatwork.png ├── flock-mono.png ├── flock.png ├── fogbugz-mono.png ├── fogbugz.png ├── github-mono.png ├── github.png ├── gitlab-mono.png ├── gitlab.png ├── hipchat-mono.png ├── hipchat.png ├── jira-mono.png ├── jira.png ├── moxtra-mono.png ├── moxtra.png ├── opsgenie-mono.png ├── opsgenie.png ├── pagerduty-mono.png ├── pagerduty.png ├── pivotal-mono.png ├── pivotal.png ├── redmine-mono.png ├── redmine.png ├── slack-mono.png ├── slack.png ├── sprintly-mono.png ├── sprintly.png ├── trello-mono.png ├── trello.png ├── webhook-mono.png ├── webhook.png ├── youtrack-mono.png ├── youtrack.png ├── zohoprojects-mono.png └── zohoprojects.png ├── lib ├── restrict_ip_addresses.rb ├── service.rb ├── service │ ├── attributes.rb │ ├── base.rb │ ├── displayable_error.rb │ ├── http.rb │ ├── schema.rb │ └── version.rb └── services │ ├── appaloosa.rb │ ├── asana.rb │ ├── bitbucket.rb │ ├── campfire.rb │ ├── chatwork.rb │ ├── flock.rb │ ├── fogbugz.rb │ ├── github.rb │ ├── gitlab.rb │ ├── hipchat.rb │ ├── jira.rb │ ├── moxtra.rb │ ├── opsgenie.rb │ ├── pagerduty.rb │ ├── pivotal.rb │ ├── redmine.rb │ ├── slack.rb │ ├── sprintly.rb │ ├── trello.rb │ ├── web_hook.rb │ ├── youtrack.rb │ └── zohoprojects.rb ├── service.gemspec ├── service_configs.yml.example └── spec ├── fixtures └── jira_issue.json ├── restrict_ip_addresses_spec.rb ├── service └── base_spec.rb ├── services ├── appaloosa_spec.rb ├── asana_spec.rb ├── bitbucket_spec.rb ├── campfire_spec.rb ├── chatwork_spec.rb ├── flock_spec.rb ├── fogbugz_spec.rb ├── github_spec.rb ├── gitlab_spec.rb ├── hipchat_spec.rb ├── jira_spec.rb ├── moxtra_spec.rb ├── opsgenie_spec.rb ├── pagerduty_spec.rb ├── pivotal_spec.rb ├── redmine_spec.rb ├── slack_spec.rb ├── sprintly_spec.rb ├── trello_spec.rb ├── web_hook_spec.rb ├── youtrack_spec.rb └── zohoprojects_spec.rb ├── spec_helper.rb └── support └── matchers └── service_schema_matchers.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/test_service_hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/bin/test_service_hook -------------------------------------------------------------------------------- /img/appaloosa-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/appaloosa-mono.png -------------------------------------------------------------------------------- /img/appaloosa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/appaloosa.png -------------------------------------------------------------------------------- /img/asana-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/asana-mono.png -------------------------------------------------------------------------------- /img/asana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/asana.png -------------------------------------------------------------------------------- /img/bitbucket-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/bitbucket-mono.png -------------------------------------------------------------------------------- /img/bitbucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/bitbucket.png -------------------------------------------------------------------------------- /img/campfire-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/campfire-mono.png -------------------------------------------------------------------------------- /img/campfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/campfire.png -------------------------------------------------------------------------------- /img/chatwork-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/chatwork-mono.png -------------------------------------------------------------------------------- /img/chatwork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/chatwork.png -------------------------------------------------------------------------------- /img/flock-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/flock-mono.png -------------------------------------------------------------------------------- /img/flock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/flock.png -------------------------------------------------------------------------------- /img/fogbugz-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/fogbugz-mono.png -------------------------------------------------------------------------------- /img/fogbugz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/fogbugz.png -------------------------------------------------------------------------------- /img/github-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/github-mono.png -------------------------------------------------------------------------------- /img/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/github.png -------------------------------------------------------------------------------- /img/gitlab-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/gitlab-mono.png -------------------------------------------------------------------------------- /img/gitlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/gitlab.png -------------------------------------------------------------------------------- /img/hipchat-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/hipchat-mono.png -------------------------------------------------------------------------------- /img/hipchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/hipchat.png -------------------------------------------------------------------------------- /img/jira-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/jira-mono.png -------------------------------------------------------------------------------- /img/jira.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/jira.png -------------------------------------------------------------------------------- /img/moxtra-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/moxtra-mono.png -------------------------------------------------------------------------------- /img/moxtra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/moxtra.png -------------------------------------------------------------------------------- /img/opsgenie-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/opsgenie-mono.png -------------------------------------------------------------------------------- /img/opsgenie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/opsgenie.png -------------------------------------------------------------------------------- /img/pagerduty-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/pagerduty-mono.png -------------------------------------------------------------------------------- /img/pagerduty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/pagerduty.png -------------------------------------------------------------------------------- /img/pivotal-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/pivotal-mono.png -------------------------------------------------------------------------------- /img/pivotal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/pivotal.png -------------------------------------------------------------------------------- /img/redmine-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/redmine-mono.png -------------------------------------------------------------------------------- /img/redmine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/redmine.png -------------------------------------------------------------------------------- /img/slack-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/slack-mono.png -------------------------------------------------------------------------------- /img/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/slack.png -------------------------------------------------------------------------------- /img/sprintly-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/sprintly-mono.png -------------------------------------------------------------------------------- /img/sprintly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/sprintly.png -------------------------------------------------------------------------------- /img/trello-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/trello-mono.png -------------------------------------------------------------------------------- /img/trello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/trello.png -------------------------------------------------------------------------------- /img/webhook-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/webhook-mono.png -------------------------------------------------------------------------------- /img/webhook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/webhook.png -------------------------------------------------------------------------------- /img/youtrack-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/youtrack-mono.png -------------------------------------------------------------------------------- /img/youtrack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/youtrack.png -------------------------------------------------------------------------------- /img/zohoprojects-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/zohoprojects-mono.png -------------------------------------------------------------------------------- /img/zohoprojects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/img/zohoprojects.png -------------------------------------------------------------------------------- /lib/restrict_ip_addresses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/restrict_ip_addresses.rb -------------------------------------------------------------------------------- /lib/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/service.rb -------------------------------------------------------------------------------- /lib/service/attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/service/attributes.rb -------------------------------------------------------------------------------- /lib/service/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/service/base.rb -------------------------------------------------------------------------------- /lib/service/displayable_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/service/displayable_error.rb -------------------------------------------------------------------------------- /lib/service/http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/service/http.rb -------------------------------------------------------------------------------- /lib/service/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/service/schema.rb -------------------------------------------------------------------------------- /lib/service/version.rb: -------------------------------------------------------------------------------- 1 | module Service 2 | VERSION = '5.7.6' 3 | end 4 | -------------------------------------------------------------------------------- /lib/services/appaloosa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/services/appaloosa.rb -------------------------------------------------------------------------------- /lib/services/asana.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/services/asana.rb -------------------------------------------------------------------------------- /lib/services/bitbucket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/services/bitbucket.rb -------------------------------------------------------------------------------- /lib/services/campfire.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/services/campfire.rb -------------------------------------------------------------------------------- /lib/services/chatwork.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/services/chatwork.rb -------------------------------------------------------------------------------- /lib/services/flock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/services/flock.rb -------------------------------------------------------------------------------- /lib/services/fogbugz.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/services/fogbugz.rb -------------------------------------------------------------------------------- /lib/services/github.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/services/github.rb -------------------------------------------------------------------------------- /lib/services/gitlab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/services/gitlab.rb -------------------------------------------------------------------------------- /lib/services/hipchat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/services/hipchat.rb -------------------------------------------------------------------------------- /lib/services/jira.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/services/jira.rb -------------------------------------------------------------------------------- /lib/services/moxtra.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/services/moxtra.rb -------------------------------------------------------------------------------- /lib/services/opsgenie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/services/opsgenie.rb -------------------------------------------------------------------------------- /lib/services/pagerduty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/services/pagerduty.rb -------------------------------------------------------------------------------- /lib/services/pivotal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/services/pivotal.rb -------------------------------------------------------------------------------- /lib/services/redmine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/services/redmine.rb -------------------------------------------------------------------------------- /lib/services/slack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/services/slack.rb -------------------------------------------------------------------------------- /lib/services/sprintly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/services/sprintly.rb -------------------------------------------------------------------------------- /lib/services/trello.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/services/trello.rb -------------------------------------------------------------------------------- /lib/services/web_hook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/services/web_hook.rb -------------------------------------------------------------------------------- /lib/services/youtrack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/services/youtrack.rb -------------------------------------------------------------------------------- /lib/services/zohoprojects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/lib/services/zohoprojects.rb -------------------------------------------------------------------------------- /service.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/service.gemspec -------------------------------------------------------------------------------- /service_configs.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/service_configs.yml.example -------------------------------------------------------------------------------- /spec/fixtures/jira_issue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/fixtures/jira_issue.json -------------------------------------------------------------------------------- /spec/restrict_ip_addresses_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/restrict_ip_addresses_spec.rb -------------------------------------------------------------------------------- /spec/service/base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/service/base_spec.rb -------------------------------------------------------------------------------- /spec/services/appaloosa_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/services/appaloosa_spec.rb -------------------------------------------------------------------------------- /spec/services/asana_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/services/asana_spec.rb -------------------------------------------------------------------------------- /spec/services/bitbucket_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/services/bitbucket_spec.rb -------------------------------------------------------------------------------- /spec/services/campfire_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/services/campfire_spec.rb -------------------------------------------------------------------------------- /spec/services/chatwork_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/services/chatwork_spec.rb -------------------------------------------------------------------------------- /spec/services/flock_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/services/flock_spec.rb -------------------------------------------------------------------------------- /spec/services/fogbugz_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/services/fogbugz_spec.rb -------------------------------------------------------------------------------- /spec/services/github_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/services/github_spec.rb -------------------------------------------------------------------------------- /spec/services/gitlab_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/services/gitlab_spec.rb -------------------------------------------------------------------------------- /spec/services/hipchat_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/services/hipchat_spec.rb -------------------------------------------------------------------------------- /spec/services/jira_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/services/jira_spec.rb -------------------------------------------------------------------------------- /spec/services/moxtra_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/services/moxtra_spec.rb -------------------------------------------------------------------------------- /spec/services/opsgenie_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/services/opsgenie_spec.rb -------------------------------------------------------------------------------- /spec/services/pagerduty_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/services/pagerduty_spec.rb -------------------------------------------------------------------------------- /spec/services/pivotal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/services/pivotal_spec.rb -------------------------------------------------------------------------------- /spec/services/redmine_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/services/redmine_spec.rb -------------------------------------------------------------------------------- /spec/services/slack_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/services/slack_spec.rb -------------------------------------------------------------------------------- /spec/services/sprintly_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/services/sprintly_spec.rb -------------------------------------------------------------------------------- /spec/services/trello_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/services/trello_spec.rb -------------------------------------------------------------------------------- /spec/services/web_hook_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/services/web_hook_spec.rb -------------------------------------------------------------------------------- /spec/services/youtrack_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/services/youtrack_spec.rb -------------------------------------------------------------------------------- /spec/services/zohoprojects_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/services/zohoprojects_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/matchers/service_schema_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crashlytics/crashlytics-services/HEAD/spec/support/matchers/service_schema_matchers.rb --------------------------------------------------------------------------------