lib/github_api/say.rb in github_api-0.9.7 vs lib/github_api/say.rb in github_api-0.10.0

- old
+ new

@@ -12,11 +12,12 @@ # github.octocat.say "My custom string..." # def say(*args) params = arguments(*args).params params[:s] = args.shift unless args.empty? + params['raw'] = true - get_request('/octocat', params, :raw => true) + get_request('/octocat', params) end end # Say end # Github