hmsearch-postgres 0.1.2 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +13 -0
- data/ext/hmsearch/extconf.rb +10 -0
- data/hmsearch-postgres.gemspec +1 -1
- metadata +2 -2
- data/hmsearch-postgres-0.1.1.gem +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f9588ffea73c89eb6749d709e4f49386bb1535c0
|
4
|
+
data.tar.gz: 1bfcb1bc9f6253e1e1c162c635de7c0fdf2c09b2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 10dfb757bf53426f20ecceabd8e5c1ebf3d939c9d25c1916b8aae80794395b980389d273c0d92c1e4277d8936a552d3399c8abf8147881f85d3c90d9f462f7d5
|
7
|
+
data.tar.gz: 3349c14fa24698e9d1c03e99e9518ba8eae3bdc28c4872711c6e6f4e24d9e67dc2ff87f3de9e33d40fb0c885460ee1bddfe4a104bcbf0649354d7b16e05f18c6
|
data/.travis.yml
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
language: ruby
|
2
|
+
rvm:
|
3
|
+
- 2.1.5
|
4
|
+
before_install:
|
5
|
+
- mkdir -p $TRAVIS_BUILD_DIR/vendor
|
6
|
+
- curl -O http://pqxx.org/download/software/libpqxx/libpqxx-4.0.1.tar.gz
|
7
|
+
- tar -xvf libpqxx-4.0.1.tar.gz
|
8
|
+
- cd libpqxx-4.0.1
|
9
|
+
- ./configure --prefix=$TRAVIS_BUILD_DIR/vendor
|
10
|
+
- make
|
11
|
+
- make install
|
12
|
+
- cd ..
|
13
|
+
- bundle config --local build.hmsearch-postgres -- --with-pqxx-include=$TRAVIS_BUILD_DIR/vendor/include\ --with-pqxx-lib=$TRAVIS_BUILD_DIR/vendor/lib
|
data/ext/hmsearch/extconf.rb
CHANGED
data/hmsearch-postgres.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hmsearch-postgres
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kris Selden
|
@@ -47,6 +47,7 @@ extensions:
|
|
47
47
|
extra_rdoc_files: []
|
48
48
|
files:
|
49
49
|
- ".gitignore"
|
50
|
+
- ".travis.yml"
|
50
51
|
- Gemfile
|
51
52
|
- LICENSE
|
52
53
|
- README.md
|
@@ -55,7 +56,6 @@ files:
|
|
55
56
|
- ext/hmsearch/hmsearch.cc
|
56
57
|
- ext/hmsearch/hmsearch.h
|
57
58
|
- ext/hmsearch/postgres_ext.cc
|
58
|
-
- hmsearch-postgres-0.1.1.gem
|
59
59
|
- hmsearch-postgres.gemspec
|
60
60
|
- lib/hmsearch/postgres.rb
|
61
61
|
- test/hmsearch_test.rb
|
data/hmsearch-postgres-0.1.1.gem
DELETED
Binary file
|