├── .gitignore ├── .yardopts ├── Gemfile ├── README.md ├── Rakefile ├── google_plus.gemspec ├── lib ├── google_plus.rb └── google_plus │ ├── access_token.rb │ ├── activity.rb │ ├── comment.rb │ ├── cursor.rb │ ├── entity.rb │ ├── errors │ ├── connection_error.rb │ └── request_error.rb │ ├── person.rb │ ├── resource.rb │ └── version.rb └── spec ├── examples ├── access_token_spec.rb ├── activity_spec.rb ├── comment_spec.rb ├── cursor_spec.rb ├── google_plus_spec.rb ├── person_spec.rb └── resource_spec.rb ├── spec_helper.rb └── support └── access_token_response_example.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/.gitignore -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/.yardopts -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/Rakefile -------------------------------------------------------------------------------- /google_plus.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/google_plus.gemspec -------------------------------------------------------------------------------- /lib/google_plus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/lib/google_plus.rb -------------------------------------------------------------------------------- /lib/google_plus/access_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/lib/google_plus/access_token.rb -------------------------------------------------------------------------------- /lib/google_plus/activity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/lib/google_plus/activity.rb -------------------------------------------------------------------------------- /lib/google_plus/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/lib/google_plus/comment.rb -------------------------------------------------------------------------------- /lib/google_plus/cursor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/lib/google_plus/cursor.rb -------------------------------------------------------------------------------- /lib/google_plus/entity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/lib/google_plus/entity.rb -------------------------------------------------------------------------------- /lib/google_plus/errors/connection_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/lib/google_plus/errors/connection_error.rb -------------------------------------------------------------------------------- /lib/google_plus/errors/request_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/lib/google_plus/errors/request_error.rb -------------------------------------------------------------------------------- /lib/google_plus/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/lib/google_plus/person.rb -------------------------------------------------------------------------------- /lib/google_plus/resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/lib/google_plus/resource.rb -------------------------------------------------------------------------------- /lib/google_plus/version.rb: -------------------------------------------------------------------------------- 1 | module GooglePlus 2 | 3 | # The current version of the library 4 | VERSION = '0.2.5' 5 | 6 | end 7 | -------------------------------------------------------------------------------- /spec/examples/access_token_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/spec/examples/access_token_spec.rb -------------------------------------------------------------------------------- /spec/examples/activity_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/spec/examples/activity_spec.rb -------------------------------------------------------------------------------- /spec/examples/comment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/spec/examples/comment_spec.rb -------------------------------------------------------------------------------- /spec/examples/cursor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/spec/examples/cursor_spec.rb -------------------------------------------------------------------------------- /spec/examples/google_plus_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/spec/examples/google_plus_spec.rb -------------------------------------------------------------------------------- /spec/examples/person_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/spec/examples/person_spec.rb -------------------------------------------------------------------------------- /spec/examples/resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/spec/examples/resource_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/access_token_response_example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seejohnrun/google_plus/HEAD/spec/support/access_token_response_example.rb --------------------------------------------------------------------------------