├── .gitignore ├── API.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin └── periscope-api-stream ├── lib ├── periscope_api.rb └── periscope_api │ ├── broadcast.rb │ ├── twitter_xauth.rb │ └── version.rb └── periscope_api.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielg/periscope_api/HEAD/.gitignore -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielg/periscope_api/HEAD/API.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielg/periscope_api/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielg/periscope_api/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielg/periscope_api/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | 3 | -------------------------------------------------------------------------------- /bin/periscope-api-stream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielg/periscope_api/HEAD/bin/periscope-api-stream -------------------------------------------------------------------------------- /lib/periscope_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielg/periscope_api/HEAD/lib/periscope_api.rb -------------------------------------------------------------------------------- /lib/periscope_api/broadcast.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielg/periscope_api/HEAD/lib/periscope_api/broadcast.rb -------------------------------------------------------------------------------- /lib/periscope_api/twitter_xauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielg/periscope_api/HEAD/lib/periscope_api/twitter_xauth.rb -------------------------------------------------------------------------------- /lib/periscope_api/version.rb: -------------------------------------------------------------------------------- 1 | module PeriscopeApi 2 | VERSION = "0.0.1" 3 | end 4 | -------------------------------------------------------------------------------- /periscope_api.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielg/periscope_api/HEAD/periscope_api.gemspec --------------------------------------------------------------------------------