collective-data 0.0.1 → 0.0.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.
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.2
|
@@ -0,0 +1,55 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{collective-data}
|
8
|
+
s.version = "0.0.2"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Keith Gaddis"]
|
12
|
+
s.date = %q{2010-03-09}
|
13
|
+
s.description = %q{This gem allows access to the data portal of CollectiveData from ruby.}
|
14
|
+
s.email = %q{keith@collectiveidea.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
".gitignore",
|
22
|
+
"LICENSE",
|
23
|
+
"README.rdoc",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"collective-data.gemspec",
|
27
|
+
"cucumber.yml",
|
28
|
+
"features/npi_lookup.feature",
|
29
|
+
"features/step_definitions/npi_steps.rb",
|
30
|
+
"features/support/env.rb",
|
31
|
+
"features/support/fixtures/0123456789.json",
|
32
|
+
"lib/collective_data.rb",
|
33
|
+
"lib/collective_data/provider.rb",
|
34
|
+
"lib/collective_data/test_helper.rb"
|
35
|
+
]
|
36
|
+
s.homepage = %q{http://github.com/collectiveidea/collective-data}
|
37
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
38
|
+
s.require_paths = ["lib"]
|
39
|
+
s.rubygems_version = %q{1.3.6}
|
40
|
+
s.summary = %q{This gem allows access to the data portal of CollectiveData from ruby.}
|
41
|
+
|
42
|
+
if s.respond_to? :specification_version then
|
43
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
44
|
+
s.specification_version = 3
|
45
|
+
|
46
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
47
|
+
s.add_development_dependency(%q<cucumber>, [">= 0"])
|
48
|
+
else
|
49
|
+
s.add_dependency(%q<cucumber>, [">= 0"])
|
50
|
+
end
|
51
|
+
else
|
52
|
+
s.add_dependency(%q<cucumber>, [">= 0"])
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
data/features/support/env.rb
CHANGED
@@ -3,9 +3,9 @@ require 'collective_data'
|
|
3
3
|
require 'ruby-debug'
|
4
4
|
|
5
5
|
require 'test/unit/assertions'
|
6
|
-
require File.dirname(__FILE__)+"/../../lib/
|
6
|
+
require File.dirname(__FILE__)+"/../../lib/collective_data/test_helper"
|
7
7
|
|
8
8
|
include CollectiveData
|
9
9
|
|
10
10
|
World(Test::Unit::Assertions)
|
11
|
-
World(CollectiveData::TestHelper)
|
11
|
+
World(CollectiveData::TestHelper)
|
@@ -12,9 +12,9 @@ module CollectiveData
|
|
12
12
|
end
|
13
13
|
|
14
14
|
def collective_data_response_path(response_file)
|
15
|
-
file = File.expand_path(File.join(File.dirname(__FILE__), "..", "features", "support", "fixtures", "#{response_file}.json"))
|
15
|
+
file = File.expand_path(File.join(File.dirname(__FILE__), "..", "..","features", "support", "fixtures", "#{response_file}.json"))
|
16
16
|
raise "Unknown response file" unless File.exist?(file)
|
17
17
|
file
|
18
18
|
end
|
19
19
|
end
|
20
|
-
end
|
20
|
+
end
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 2
|
9
|
+
version: 0.0.2
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Keith Gaddis
|
@@ -45,6 +45,7 @@ files:
|
|
45
45
|
- README.rdoc
|
46
46
|
- Rakefile
|
47
47
|
- VERSION
|
48
|
+
- collective-data.gemspec
|
48
49
|
- cucumber.yml
|
49
50
|
- features/npi_lookup.feature
|
50
51
|
- features/step_definitions/npi_steps.rb
|
@@ -52,7 +53,7 @@ files:
|
|
52
53
|
- features/support/fixtures/0123456789.json
|
53
54
|
- lib/collective_data.rb
|
54
55
|
- lib/collective_data/provider.rb
|
55
|
-
- lib/
|
56
|
+
- lib/collective_data/test_helper.rb
|
56
57
|
has_rdoc: true
|
57
58
|
homepage: http://github.com/collectiveidea/collective-data
|
58
59
|
licenses: []
|