openseek-api 0.9.1 → 0.9.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9d09a04d182af1ff95a8bfeeac27b0ce337ce951
4
- data.tar.gz: 1f97c0b533e95d4c33b65a69583294f4c546960c
3
+ metadata.gz: 2bf57918674b8758909e78529798e9edeb58a635
4
+ data.tar.gz: 4b898545efacf70a0fcfa550d3c52a5a60e6a40a
5
5
  SHA512:
6
- metadata.gz: 9cf6b345c70e1434fa35611f7dfbfee696c0a67e879f7c7b57338400fe10a80301fede9fb0022ddb5f35b6b04642e161c61bfee3c76b951c964a6799ea3b9966
7
- data.tar.gz: b21e81c4a38ce206c886de149aaaa3a33a7eab0671b64e68ed0318d98ff649e4f2a9392b246607e0cab2870bd0ed78b26e46c419a964cbd1378c2e68521cf905
6
+ metadata.gz: 2c7d85ee4c54c53b476d79b4fa80cce748548b0a9affe1491684cca7b24e4c26090ec20b9821a08f445eacdf1b59639a6e43c0c65c275386606cbe6de2f2c4db
7
+ data.tar.gz: df3dace0644638dc1aba01b5d875953504de17c80c4a8293fe6f946b357518b631fe1622cd19cc6a5c4e06ee34c60e9b79528b8d57d067e95f3a19c38be0d854
data/.gitignore CHANGED
@@ -12,6 +12,7 @@ capybara-*.html
12
12
  rerun.txt
13
13
  pickle-email-*.html
14
14
  .idea/
15
+ pkg/
15
16
 
16
17
  # TODO Comment out these rules if you are OK with secrets being uploaded to the repo
17
18
  config/initializers/secret_token.rb
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- openseek-api (0.9.1)
4
+ openseek-api (0.9.2)
5
5
  cocaine
6
6
 
7
7
  GEM
@@ -1,6 +1,6 @@
1
1
  module Fairdom
2
2
  module OpenbisApi
3
- VERSION = '0.9.1'.freeze
3
+ VERSION = '0.9.2'.freeze
4
4
  JAR_VERSION = '0.9'.freeze
5
5
  end
6
6
  end
File without changes
@@ -1,27 +1,27 @@
1
1
  # -*- encoding: utf-8 -*-
2
- $:.push File.expand_path("../lib", __FILE__)
2
+ $LOAD_PATH.push File.expand_path('../lib', __FILE__)
3
3
  require 'fairdom/openbis_api/versions'
4
4
 
5
- Gem::Specification.new do |s|
6
- s.name = "openseek-api"
7
- s.version = Fairdom::OpenbisApi::VERSION
8
- s.authors = ["quyen"]
9
- s.email = ["thucquyendn@gmail.com"]
10
- s.homepage = ""
11
- s.summary = %q{ruby gem to talk to openbis-api java}
12
- s.description = %q{ruby gem to talk to openbis-api java}
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'openseek-api'
7
+ spec.version = Fairdom::OpenbisApi::VERSION
8
+ spec.authors = ['Stuart Owen', 'Quyen Nguyen']
9
+ spec.email = ['thucquyendn@gmail.com']
10
+ spec.homepage = 'https://github.com/fairdom/openseek-api-gem'
11
+ spec.summary = 'ruby gem to talk to openbis-api java libaries, for use within SEEK4Science'
12
+ spec.description = 'ruby gem to talk to openbis-api java libaries, for use within SEEK4Science'
13
13
 
14
- s.files = `git ls-files`.split("\n")
15
- s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
16
- s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
17
- s.require_paths = ["lib"]
14
+ spec.files = `git ls-files`.split("\n")
15
+ spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
16
+ spec.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
17
+ spec.require_paths = ['lib']
18
18
 
19
- # specify any dependencies here; for example:
20
- s.add_development_dependency("coveralls", ['>= 0'])
21
- s.add_development_dependency('rubocop', ['>= 0'])
22
- s.add_development_dependency('rubycritic', ['>= 0'])
23
- s.add_development_dependency("rake",['~> 10.0'])
24
-
25
- s.add_dependency('cocaine', ['>= 0'])
19
+ # runtime dependencies
20
+ spec.add_dependency('cocaine', ['>= 0'])
26
21
 
22
+ # development dependencies
23
+ spec.add_development_dependency('coveralls', ['>= 0'])
24
+ spec.add_development_dependency('rubocop', ['>= 0'])
25
+ spec.add_development_dependency('rubycritic', ['>= 0'])
26
+ spec.add_development_dependency('rake', ['~> 10.0'])
27
27
  end
@@ -3,7 +3,7 @@ require 'coveralls'
3
3
  Coveralls.wear!
4
4
 
5
5
  require 'test/unit'
6
- require 'openseek-api-gem'
6
+ require 'openseek-api'
7
7
 
8
8
  class ApplicationServerQueryTest < Test::Unit::TestCase
9
9
  include Fairdom::OpenbisApi
@@ -3,7 +3,7 @@ require 'coveralls'
3
3
  Coveralls.wear!
4
4
 
5
5
  require 'test/unit'
6
- require 'openseek-api-gem'
6
+ require 'openseek-api'
7
7
 
8
8
  class AuthenticationTest < Test::Unit::TestCase
9
9
  include Fairdom::OpenbisApi
@@ -3,7 +3,7 @@ require 'coveralls'
3
3
  Coveralls.wear!
4
4
 
5
5
  require 'test/unit'
6
- require 'openseek-api-gem'
6
+ require 'openseek-api'
7
7
 
8
8
  class DataStoreDownloadTest < Test::Unit::TestCase
9
9
  include Fairdom::OpenbisApi
@@ -3,7 +3,7 @@ require 'coveralls'
3
3
  Coveralls.wear!
4
4
 
5
5
  require 'test/unit'
6
- require 'openseek-api-gem'
6
+ require 'openseek-api'
7
7
 
8
8
  class DataStoreQueryTest < Test::Unit::TestCase
9
9
  include Fairdom::OpenbisApi
metadata CHANGED
@@ -1,15 +1,30 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openseek-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.9.2
5
5
  platform: ruby
6
6
  authors:
7
- - quyen
7
+ - Stuart Owen
8
+ - Quyen Nguyen
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
12
  date: 2017-03-06 00:00:00.000000000 Z
12
13
  dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: cocaine
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ">="
19
+ - !ruby/object:Gem::Version
20
+ version: '0'
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ version: '0'
13
28
  - !ruby/object:Gem::Dependency
14
29
  name: coveralls
15
30
  requirement: !ruby/object:Gem::Requirement
@@ -66,21 +81,7 @@ dependencies:
66
81
  - - "~>"
67
82
  - !ruby/object:Gem::Version
68
83
  version: '10.0'
69
- - !ruby/object:Gem::Dependency
70
- name: cocaine
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - ">="
74
- - !ruby/object:Gem::Version
75
- version: '0'
76
- type: :runtime
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - ">="
81
- - !ruby/object:Gem::Version
82
- version: '0'
83
- description: ruby gem to talk to openbis-api java
84
+ description: ruby gem to talk to openbis-api java libaries, for use within SEEK4Science
84
85
  email:
85
86
  - thucquyendn@gmail.com
86
87
  executables: []
@@ -148,13 +149,13 @@ files:
148
149
  - lib/fairdom/openbis_api/openbis_query.rb
149
150
  - lib/fairdom/openbis_api/openbis_query_exception.rb
150
151
  - lib/fairdom/openbis_api/versions.rb
151
- - lib/openseek-api-gem.rb
152
+ - lib/openseek-api.rb
152
153
  - openseek-api-gem.gemspec
153
154
  - test/application_query_test.rb
154
155
  - test/authentication_test.rb
155
156
  - test/data_store_download_test.rb
156
157
  - test/data_store_query_test.rb
157
- homepage: ''
158
+ homepage: https://github.com/fairdom/openseek-api-gem
158
159
  licenses: []
159
160
  metadata: {}
160
161
  post_install_message:
@@ -176,5 +177,5 @@ rubyforge_project:
176
177
  rubygems_version: 2.4.8
177
178
  signing_key:
178
179
  specification_version: 4
179
- summary: ruby gem to talk to openbis-api java
180
+ summary: ruby gem to talk to openbis-api java libaries, for use within SEEK4Science
180
181
  test_files: []