Active 0.0.8 → 0.0.9
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/Rakefile +6 -0
- data/bin/Active +0 -0
- data/lib/.DS_Store +0 -0
- data/lib/Active.rb +1 -3
- data/lib/services/.DS_Store +0 -0
- data/lib/services/IActivity.rb +22 -0
- data/lib/services/activity.rb +75 -20
- data/lib/services/ats.rb +156 -0
- data/lib/services/reg_center.rb +221 -0
- data/lib/services/search.rb +83 -47
- data/spec/activity_spec.rb +85 -5
- data/spec/ats_spec.rb +57 -0
- data/spec/reg_spec.rb +53 -0
- data/spec/search_spec.rb +62 -2
- data/version.txt +1 -1
- metadata +30 -15
- data/.bnsignore +0 -19
data/version.txt
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.9
|
metadata
CHANGED
@@ -1,13 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: Active
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash: 15
|
5
4
|
prerelease: false
|
6
5
|
segments:
|
7
6
|
- 0
|
8
7
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
8
|
+
- 9
|
9
|
+
version: 0.0.9
|
11
10
|
platform: ruby
|
12
11
|
authors:
|
13
12
|
- Jonathan Spooner, Brian Levine
|
@@ -15,25 +14,37 @@ autorequire:
|
|
15
14
|
bindir: bin
|
16
15
|
cert_chain: []
|
17
16
|
|
18
|
-
date: 2010-09-
|
17
|
+
date: 2010-09-17 00:00:00 -07:00
|
19
18
|
default_executable:
|
20
19
|
dependencies:
|
21
20
|
- !ruby/object:Gem::Dependency
|
22
|
-
name:
|
21
|
+
name: savon
|
23
22
|
prerelease: false
|
24
23
|
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
24
|
requirements:
|
27
25
|
- - ">="
|
28
26
|
- !ruby/object:Gem::Version
|
29
|
-
|
27
|
+
segments:
|
28
|
+
- 0
|
29
|
+
- 7
|
30
|
+
- 9
|
31
|
+
version: 0.7.9
|
32
|
+
type: :runtime
|
33
|
+
version_requirements: *id001
|
34
|
+
- !ruby/object:Gem::Dependency
|
35
|
+
name: bones
|
36
|
+
prerelease: false
|
37
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - ">="
|
40
|
+
- !ruby/object:Gem::Version
|
30
41
|
segments:
|
31
42
|
- 3
|
32
43
|
- 4
|
33
44
|
- 7
|
34
45
|
version: 3.4.7
|
35
46
|
type: :development
|
36
|
-
version_requirements: *
|
47
|
+
version_requirements: *id002
|
37
48
|
description: Search api for Active Network
|
38
49
|
email: jspooner [at] gmail.com
|
39
50
|
executables:
|
@@ -44,22 +55,30 @@ extra_rdoc_files:
|
|
44
55
|
- History.txt
|
45
56
|
- README.txt
|
46
57
|
- bin/Active
|
58
|
+
- lib/.DS_Store
|
59
|
+
- lib/services/.DS_Store
|
47
60
|
- version.txt
|
48
61
|
files:
|
49
|
-
- .bnsignore
|
50
62
|
- Active.gemspec
|
51
63
|
- History.txt
|
52
64
|
- README.txt
|
53
65
|
- Rakefile
|
54
66
|
- bin/Active
|
67
|
+
- lib/.DS_Store
|
55
68
|
- lib/Active.rb
|
69
|
+
- lib/services/.DS_Store
|
70
|
+
- lib/services/IActivity.rb
|
56
71
|
- lib/services/activity.rb
|
72
|
+
- lib/services/ats.rb
|
73
|
+
- lib/services/reg_center.rb
|
57
74
|
- lib/services/search.rb
|
58
75
|
- spec/.DS_Store
|
59
76
|
- spec/Active_spec.rb
|
60
77
|
- spec/activity_spec.rb
|
78
|
+
- spec/ats_spec.rb
|
61
79
|
- spec/benchmark/search_bench.rb
|
62
80
|
- spec/custom_matchers_spec.rb
|
81
|
+
- spec/reg_spec.rb
|
63
82
|
- spec/search_spec.rb
|
64
83
|
- spec/spec_helper.rb
|
65
84
|
- test/test_Active.rb
|
@@ -68,34 +87,30 @@ has_rdoc: true
|
|
68
87
|
homepage: http://developer.active.com/docs/Activecom_Search_API_Reference
|
69
88
|
licenses: []
|
70
89
|
|
71
|
-
post_install_message:
|
90
|
+
post_install_message: " --------------------------\n Welcome to Active Network\n --------------------------\n"
|
72
91
|
rdoc_options:
|
73
92
|
- --main
|
74
93
|
- README.txt
|
75
94
|
require_paths:
|
76
95
|
- lib
|
77
96
|
required_ruby_version: !ruby/object:Gem::Requirement
|
78
|
-
none: false
|
79
97
|
requirements:
|
80
98
|
- - ">="
|
81
99
|
- !ruby/object:Gem::Version
|
82
|
-
hash: 3
|
83
100
|
segments:
|
84
101
|
- 0
|
85
102
|
version: "0"
|
86
103
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
87
|
-
none: false
|
88
104
|
requirements:
|
89
105
|
- - ">="
|
90
106
|
- !ruby/object:Gem::Version
|
91
|
-
hash: 3
|
92
107
|
segments:
|
93
108
|
- 0
|
94
109
|
version: "0"
|
95
110
|
requirements: []
|
96
111
|
|
97
112
|
rubyforge_project: Active
|
98
|
-
rubygems_version: 1.3.
|
113
|
+
rubygems_version: 1.3.6
|
99
114
|
signing_key:
|
100
115
|
specification_version: 3
|
101
116
|
summary: Search api for Active Network
|
data/.bnsignore
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
# The list of files that should be ignored by Mr Bones.
|
2
|
-
# Lines that start with '#' are comments.
|
3
|
-
#
|
4
|
-
# A .gitignore file can be used instead by setting it as the ignore
|
5
|
-
# file in your Rakefile:
|
6
|
-
#
|
7
|
-
# Bones {
|
8
|
-
# ignore_file '.gitignore'
|
9
|
-
# }
|
10
|
-
#
|
11
|
-
# For a project with a C extension, the following would be a good set of
|
12
|
-
# exclude patterns (uncomment them if you want to use them):
|
13
|
-
# *.[oa]
|
14
|
-
# *~
|
15
|
-
announcement.txt
|
16
|
-
coverage
|
17
|
-
doc
|
18
|
-
pkg
|
19
|
-
.DS_Store
|