github-ds 0.2.4 → 0.2.5

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: 5ca77b260c768c04ed6305fc197d57574853420a
4
- data.tar.gz: 0bfa07eb461866f072a1dbdb9e4e0a1483fbcd9b
3
+ metadata.gz: 56d108fb77f8baa49283eac8623ddb05c4f2e287
4
+ data.tar.gz: 7969c8d5a6981f2cb7bcd5d7c9613efab84d06ab
5
5
  SHA512:
6
- metadata.gz: 80a238606f9688199c7e531e96bf745ad8f85a1ba7f30bd069f95bd916e975cba886c8b8796ce4c254fa247a575f22a86047120b88c4e3e1363e2772f362c481
7
- data.tar.gz: 96bf836944b44fc3cba20d95a3a0bc60400eacef3b2a495fdd0d6a5631d383a9e512830c1533c1be8411dd049353017d16005436de630105171187c0b520a4b5
6
+ metadata.gz: effec415a16d6f35fc1aed3c258967ee60b47b204ca7436bc191359942e92709b6816e6c8c3bc2f87e1f7d2afaba4d348963e5bc938c06c8ad1d484f5935cfad
7
+ data.tar.gz: 0e4458ba08781a8b0c5176dab5a384fc90cf2e4cc1ed608790a2f0e8df48045a9fdc13418b705255c84573104aaff9f42d3d072d5f6bb3970d3b65640bd40b0f
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.5
4
+
5
+ Fixes
6
+
7
+ * Replaces `requires` with `require_relative` to avoid requirement errors
8
+ when the gem is required inside the a "gihub" load path https://github.com/github/github-ds/commit/cb50e5318c911cf5bbf30fd07ca8ea93bfbf1c6d
9
+
3
10
  ## 0.2.4
4
11
 
5
12
  Additions
data/README.md CHANGED
@@ -41,7 +41,6 @@ Once you have created and executed the migration, KV can do neat things like thi
41
41
 
42
42
  ```ruby
43
43
  require "pp"
44
- require "github/kv"
45
44
 
46
45
  # Create new instance using ActiveRecord's default connection.
47
46
  kv = GitHub::KV.new { ActiveRecord::Base.connection }
@@ -1,8 +1,8 @@
1
- require "github/ds/version"
1
+ require_relative "ds/version"
2
2
 
3
3
  module GitHub
4
4
  module DS
5
5
  end
6
6
  end
7
7
 
8
- require "github/kv"
8
+ require_relative "kv"
@@ -1,5 +1,5 @@
1
1
  module GitHub
2
2
  module DS
3
- VERSION = "0.2.4"
3
+ VERSION = "0.2.5"
4
4
  end
5
5
  end
@@ -1,5 +1,5 @@
1
- require "github/result"
2
- require "github/sql"
1
+ require_relative "result"
2
+ require_relative "sql"
3
3
 
4
4
  # GitHub::KV is a key/value data store backed by MySQL (however, the backing
5
5
  # store used should be regarded as an implementation detail).
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: github-ds
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - GitHub Open Source
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2017-09-20 00:00:00.000000000 Z
12
+ date: 2017-09-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activerecord
@@ -188,7 +188,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
188
188
  version: '0'
189
189
  requirements: []
190
190
  rubyforge_project:
191
- rubygems_version: 2.4.5.1
191
+ rubygems_version: 2.6.13
192
192
  signing_key:
193
193
  specification_version: 4
194
194
  summary: A collection of libraries for working with SQL on top of ActiveRecord's connection.