reuters 0.8.1 → 0.8.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- OTlkMzQzN2M1ZDVmYzUxMTYyMWYzMmJiYzYxN2YyMmU3ZmE3MGM1Mw==
4
+ ZGRiODlmYWM5Mjc2NzlhMmQ4MTJhYTEyNTM0YWE4ZmRlMmM2YzNmZA==
5
5
  data.tar.gz: !binary |-
6
- MTExNGYxYWFjNWE0NWQxZmYyN2FkNjgxMjJmZTI0ZmFlOGMwMjc3NQ==
6
+ MGI3NmUzMmJiZjQ1ZTcxNWFhMmNmM2EwOGVlNDcyNDliNDc3YjE3MQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YjM3NmQxMWQyNzNmMTc5ODFlMmQwNmJkMTMyZTY0ZmVmNGRiNzYyN2E1MTMz
10
- NWQ4YjVmYjI4NTZlZjk0MTc0NjEyYzUzMWUwMDE5ZWI0MDdjYzg5NWQ0MjM4
11
- ZjI1Yzc0OWQxZmI3Y2U0ZDgwZGFkMzg2MTJhYzViMjNmNzg2YzY=
9
+ NDQ0YmU2OTU4MjRlNTUzY2EwZTE5ZjJiN2I2M2JlMzAzM2EwZmFiZDUwYThh
10
+ NzhkNTRlZjk1NDU4NWVlMmY1ZjhiMzI4MDYzMzRlMTA2YjYxZWU4ZTNmNDdi
11
+ YTY3ZmUxNDViYTNjMzFiNzM2YmUwOGVjYjZkYTYxZTEyMDEyOGE=
12
12
  data.tar.gz: !binary |-
13
- YTgwN2FmZWJmM2Q0NDdhNzc5ZWEzNDU3NWZhMjhhOTI3NTQ5NDE4MTAxYTBj
14
- NWNjMTY3MTIxZjJlOTI5NjE4N2MwYjM3YmEwM2EwMDU4NDgwM2M2M2YyNTIw
15
- ZmIxOGI5ODAxOTBhODVhZTM0YWIyOTUwYmIyNjA1NjljZjI5NWQ=
13
+ YTdlMDcwOTk1ZmUyYmNkMGE2YWU3NDY4MjQ3ODkzNjg4ZjA0MTU0NDg2ZWVi
14
+ ZGRlNjdjMGNjZDYxZTc1MWUyNGJkMWNlOWQ2ZTgzMTgyNTgwN2U1M2ZmYmIw
15
+ OTU5ZGE2YmQ2MGI2NzNhYmFiMDhjYjg4NDYxMTQxMzgyMThlZTI=
data/README.md CHANGED
@@ -36,7 +36,7 @@ Reuters.configure do |config|
36
36
  login.password = "my_super_secret_password"
37
37
 
38
38
  # Set application ID
39
- login.application_id = "application_id"
39
+ login.app_id = "application_id"
40
40
  end
41
41
 
42
42
  end
@@ -206,4 +206,4 @@ The Reuters API is vast and has lots of calls that each vary in complexity and u
206
206
 
207
207
  If you would like to develop an API Call, open an issue and please feel free to ask for assistance with building it.
208
208
 
209
- If you find a bug, have a feature request or even want to contribute an enhancement or fix, please follow the contributing guidelines included in the repository.
209
+ If you find a bug, have a feature request or even want to contribute an enhancement or fix, please follow the contributing guidelines included in the repository.
@@ -46,7 +46,7 @@ module Reuters
46
46
  #
47
47
  # @return [String] the fully resolved namespace endpoint.
48
48
  def data_type
49
- ns_definition(:query_spec_data_types)
49
+ ns_definition(:query_spec_datatypes)
50
50
  end
51
51
 
52
52
  # Retrieve the correctly formatted Namespace Query
@@ -61,4 +61,4 @@ module Reuters
61
61
 
62
62
  end
63
63
  end
64
- end
64
+ end
@@ -2,5 +2,5 @@
2
2
  # Knowledge Direct API.
3
3
  module Reuters
4
4
  # Current version of the Reuters gem.
5
- VERSION = '0.8.1'
5
+ VERSION = '0.8.2'
6
6
  end
@@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
27
27
 
28
28
  spec.add_development_dependency 'bundler', '~> 1.6'
29
29
  spec.add_development_dependency 'rake'
30
- spec.add_development_dependency 'rspec'
30
+ spec.add_development_dependency 'rspec', '~> 2.14.0'
31
31
  spec.add_development_dependency 'yard'
32
32
  spec.add_development_dependency 'faker'
33
33
  spec.add_development_dependency 'redcarpet'
@@ -22,7 +22,7 @@ describe Reuters::Client::Search::Equity do
22
22
  end
23
23
 
24
24
  it "should include the camelcased data type" do
25
- expect(@equity.data_type).to include("QuerySpecDataTypes")
25
+ expect(@equity.data_type).to include("QuerySpecDatatypes")
26
26
  end
27
27
 
28
28
  end
@@ -42,5 +42,5 @@ describe Reuters::Client::Search::Equity do
42
42
  end
43
43
 
44
44
  end
45
-
46
- end
45
+
46
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: reuters
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stockflare
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-05-29 00:00:00.000000000 Z
11
+ date: 2014-06-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: savon
@@ -70,16 +70,16 @@ dependencies:
70
70
  name: rspec
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - ! '>='
73
+ - - ~>
74
74
  - !ruby/object:Gem::Version
75
- version: '0'
75
+ version: 2.14.0
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ! '>='
80
+ - - ~>
81
81
  - !ruby/object:Gem::Version
82
- version: '0'
82
+ version: 2.14.0
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: yard
85
85
  requirement: !ruby/object:Gem::Requirement