Skip to content

Commit 9179536

Browse files
committed
Update gem version, add development dependency.
1 parent 8afa246 commit 9179536

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

github_api.gemspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ Gem::Specification.new do |gem|
1919
gem.add_dependency 'multi_json', '~> 1.0.3'
2020
gem.add_dependency 'oauth2', '~> 0.5.0'
2121

22-
gem.add_development_dependency 'rspec', '~> 2.4.0'
22+
gem.add_development_dependency 'rspec', '~> 2.4.0'
2323
gem.add_development_dependency 'cucumber', '>= 0'
24+
gem.add_development_dependency 'yajl-ruby', '~> 0.8.2'
2425
gem.add_development_dependency 'bundler', '~> 1.0.0'
2526
gem.add_development_dependency 'jeweler', '~> 1.6.4'
2627
gem.add_development_dependency 'webmock', '~> 1.7.6'

lib/github_api/orgs/members.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ class Orgs
55
module Members
66

77
# List members
8+
#
89
# List all users who are members of an organization. A member is a user
910
# that belongs to at least 1 team in the organization.
1011
# If the authenticated user is also a member of this organization then

lib/github_api/request/oauth2.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ class OAuth2 < Faraday::Middleware
88
dependency 'oauth2'
99

1010
def call(env)
11-
puts "ENV: #{env.inspect}"
12-
puts "TOKEN : #{@token}"
13-
puts "APP: #{@app}"
11+
# puts "ENV: #{env.inspect}"
12+
# puts "TOKEN : #{@token}"
13+
# puts "APP: #{@app}"
1414

1515
# Extract parameters from the query
1616
params = env[:url].query_values || {}

lib/github_api/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module VERSION
55
MAJOR = 0
66
MINOR = 1
77
PATCH = 0
8-
BUILD = 'pre'
8+
BUILD = nil
99

1010
STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.');
1111
end

0 commit comments

Comments
 (0)