bitbucket2 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 61e1dec5f46928d3064f538addecd150918700d2
4
- data.tar.gz: 5525e48f84419947466a1d517baa628bf0f10b91
3
+ metadata.gz: 83d186012f7cec671342b367df692a43f5f08e5e
4
+ data.tar.gz: b9e0abb6f06a9b5d70e989a5aef9c9cd0eee5358
5
5
  SHA512:
6
- metadata.gz: f22d3178f94b79fc149e7f14639bba734662ab8c124e5868b85b23cb949557cf687a2b87ca001a036fda682fdd06ba518bea87416c8aeb5d9bbab3445887b5bc
7
- data.tar.gz: 881d510105c1b4012c94fb5bf77df70d11d8d29fed3c57236259126813c273d4cd0c9f0a9a813e036fdd051e2adf1f8b8c99e2a52ad1c56e65a6b0a60a18ee92
6
+ metadata.gz: 6614d4619e4b755f83d5426e848296f0b0fbc65d2fc01780ecda801e433ee16864aacd1ee9c36d64fd70d3c2d0be327ba75f360a28692bd567e6b4092bf6d3f4
7
+ data.tar.gz: b9dfb960ea4660fec4257336505133d816d6ba63461b87c62c29a927422f5258e00416bb671045758726c8665ec40d7e911a43ad04b6abc5478818aa1005297d
data/.gitignore CHANGED
@@ -10,3 +10,4 @@
10
10
  defaults.yml
11
11
  .byebug_history
12
12
  *.gem
13
+ /vendor/bundle/
data/Gemfile CHANGED
@@ -1,6 +1,7 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in bitbucket2.gemspec
4
- gem 'oauth2_rake', path: '../oauth2_rake'
4
+ # Internal for Fairfax
5
+ #gem 'oauth2_rake', path: '../oauth2_rake'
5
6
 
6
7
  gemspec
data/README.md CHANGED
@@ -28,7 +28,7 @@ Use the Bitbucket2::Client class to get all public repositories like this:
28
28
  Bitbucket2::Client.new.repositories.all
29
29
  ```
30
30
 
31
- To collect private data, pass an oauth_token into the constructor:
31
+ To collect private data, pass an oauth_token into the configuration:
32
32
  ```
33
33
  Bitbucket2.configure do |config|
34
34
  config.stack = -> (faraday) {
@@ -12,5 +12,6 @@ module Bitbucket2
12
12
  attribute :author, User
13
13
  attribute :reviewers, [User]
14
14
  attribute :participants, [Participant]
15
+ attribute :merge_commit, Commit
15
16
  end
16
17
  end
@@ -1,3 +1,3 @@
1
1
  module Bitbucket2
2
- VERSION = "0.2.0"
2
+ VERSION = "0.3.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bitbucket2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simon Hildebrandt
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-04-06 00:00:00.000000000 Z
11
+ date: 2016-04-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: restroom