-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
37 changed files
with
501 additions
and
182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
language: ruby | ||
rvm: | ||
- 1.9.2 | ||
- 1.9.3 | ||
- 2.0.0 | ||
script: bundle exec rake spec | ||
before_install: | ||
- sudo apt-get update -qq | ||
- sudo apt-get install -qq rpm | ||
env: | ||
- RAILS_ENV="test" | ||
before_script: "script/bootstrap" | ||
script: "script/cibuild" | ||
bundler_args: --binstubs .bin --path vendor/bundle --without local development staging production | ||
branches: | ||
only: | ||
- master | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
source 'https://rubygems.org' | ||
|
||
# Specify your gem's dependencies in reveille.gemspec | ||
# Specify your gem's dependencies in revily.gemspec | ||
gemspec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Copyright (c) 2013 Dan Ryan | ||
Copyright (c) 2013 Applied Awesome LLC | ||
|
||
MIT License | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
module Revily | ||
module Client | ||
|
||
end | ||
end | ||
# require 'revily/authentication' | ||
# require 'revily/connection' | ||
# require 'revily/request' | ||
|
||
# require 'revily/clients/incidents' | ||
# require 'revily/clients/policies' | ||
# require 'revily/clients/policy_rules' | ||
# require 'revily/clients/schedule_layers' | ||
# require 'revily/clients/schedules' | ||
# require 'revily/clients/services' | ||
# require 'revily/clients/users' | ||
|
||
# module Revily | ||
# class Client | ||
# attr_accessor(*Config::VALID_OPTIONS_KEYS) | ||
|
||
# def initialize(options={}) | ||
# options = Revily.options.merge(options) | ||
# Config::VALID_OPTIONS_KEYS.each do |key| | ||
# send("#{key}=", options[key]) | ||
# end | ||
# end | ||
|
||
# include Revily::Authentication | ||
# include Revily::Connection | ||
# include Revily::Request | ||
|
||
# include Revily::Client::Incidents | ||
# include Revily::Client::Integration | ||
# include Revily::Client::Policies | ||
# include Revily::Client::PolicyRules | ||
# include Revily::Client::ScheduleLayers | ||
# include Revily::Client::Schedules | ||
# include Revily::Client::Services | ||
# include Revily::Client::Users | ||
# include Revily::Client::Webhooks | ||
# end | ||
# end | ||
|
||
# extend Config | ||
|
||
# class << self | ||
|
||
# def new(options={}) | ||
# Revily::Client.new(options) | ||
# end | ||
|
||
# def method_missing(method, *args, &block) | ||
# return super unless new.respond_to?(method) | ||
# new.send(method, *args, &block) | ||
# end | ||
|
||
# def respond_to?(method, include_private=false) | ||
# new.respond_to?(method, include_private) || super(method, include_private) | ||
# end | ||
# end |
Oops, something went wrong.