Skip to content

Commit 157a647

Browse files
committed
tests for sample gemspec files
Signed-off-by: rpotter12 <rohitpotter12@gmail.com>
1 parent c2c845d commit 157a647

11 files changed

Lines changed: 887 additions & 384 deletions
Lines changed: 70 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,70 @@
1-
{
2-
"platform": "ruby",
3-
"name": "mysmallidea-address_standardization",
4-
"version": "0.4.1",
5-
"homepage": "http://github.com/mcmire/address_standardization",
6-
"summary": "A tiny Ruby library to quickly standardize a postal address",
7-
"description": "A tiny Ruby library to quickly standardize a postal address",
8-
"licenses": null,
9-
"email": "elliot.winkler@gmail.com",
10-
"authors": [
11-
"Elliot Winkler"
12-
],
13-
"date": "2010-02-01 00:00:00 UTC",
14-
"requirements": null,
15-
"dependencies": [
16-
"mechanize (>= 0)",
17-
"mcmire-context (>= 0, development)",
18-
"mcmire-matchy (>= 0, development)"
19-
],
20-
"files": [
21-
".gitignore",
22-
"README.md",
23-
"Rakefile",
24-
"TODO",
25-
"address_standardization.gemspec",
26-
"lib/address_standardization.rb",
27-
"lib/address_standardization/abstract_service.rb",
28-
"lib/address_standardization/address.rb",
29-
"lib/address_standardization/class_level_inheritable_attributes.rb",
30-
"lib/address_standardization/google_maps.rb",
31-
"lib/address_standardization/melissa_data.rb",
32-
"lib/address_standardization/ruby_ext.rb",
33-
"lib/address_standardization/version.rb",
34-
"test/google_maps_test.rb",
35-
"test/melissa_data_test.rb",
36-
"test/test_helper.rb"
37-
],
38-
"test_files": [
39-
"test/google_maps_test.rb",
40-
"test/melissa_data_test.rb",
41-
"test/test_helper.rb"
42-
],
43-
"extra_rdoc_files": [
44-
"README.md",
45-
"TODO"
46-
],
47-
"rubygems_version": "1.3.5",
48-
"required_ruby_version": ">= 0",
49-
"rubyforge_project": null,
50-
"loaded_from": "rubygems/address_standardization.gemspec",
51-
"original_platform": null,
52-
"new_platform": "ruby",
53-
"specification_version": 3
54-
}
1+
[
2+
{
3+
"type": "gem",
4+
"namespace": null,
5+
"name": "mysmallidea-address_standardization",
6+
"version": "0.4.1",
7+
"qualifiers": {},
8+
"subpath": null,
9+
"primary_language": "Ruby",
10+
"description": "A tiny Ruby library to quickly standardize a postal address",
11+
"release_date": null,
12+
"parties": [
13+
{
14+
"type": "person",
15+
"role": "author",
16+
"name": "Elliot Winkler",
17+
"email": "elliot.winkler@gmail.com",
18+
"url": null
19+
}
20+
],
21+
"keywords": [],
22+
"homepage_url": "http://github.com/mcmire/address_standardization",
23+
"download_url": null,
24+
"size": null,
25+
"sha1": null,
26+
"md5": null,
27+
"sha256": null,
28+
"sha512": null,
29+
"bug_tracking_url": null,
30+
"code_view_url": null,
31+
"vcs_url": null,
32+
"copyright": null,
33+
"license_expression": null,
34+
"declared_license": null,
35+
"notice_text": null,
36+
"root_path": null,
37+
"dependencies": [
38+
{
39+
"purl": "pkg:gem/mechanize",
40+
"requirement": ">= 0",
41+
"scope": "dependencies",
42+
"is_runtime": true,
43+
"is_optional": false,
44+
"is_resolved": false
45+
},
46+
{
47+
"purl": "pkg:gem/mcmire-context",
48+
"requirement": ">= 0",
49+
"scope": "dependencies",
50+
"is_runtime": true,
51+
"is_optional": false,
52+
"is_resolved": false
53+
},
54+
{
55+
"purl": "pkg:gem/mcmire-matchy",
56+
"requirement": ">= 0",
57+
"scope": "dependencies",
58+
"is_runtime": true,
59+
"is_optional": false,
60+
"is_resolved": false
61+
}
62+
],
63+
"contains_source_code": null,
64+
"source_packages": [],
65+
"purl": "pkg:gem/mysmallidea-address_standardization@0.4.1",
66+
"repository_homepage_url": "https://rubygems.org/gems/mysmallidea-address_standardization/versions/0.4.1",
67+
"repository_download_url": "https://rubygems.org/downloads/mysmallidea-address_standardization-0.4.1.gem",
68+
"api_data_url": "https://rubygems.org/api/v2/rubygems/mysmallidea-address_standardization/versions/0.4.1.json"
69+
}
70+
]
Lines changed: 62 additions & 187 deletions
Original file line numberDiff line numberDiff line change
@@ -1,187 +1,62 @@
1-
{
2-
"platform": "ruby",
3-
"name": "arel",
4-
"version": "2.0.7.beta.20110429111451",
5-
"homepage": "http://github.com/rails/arel",
6-
"summary": "Arel is a SQL AST manager for Ruby",
7-
"description": "Arel is a SQL AST manager for Ruby. It\n\n1. Simplifies the generation complex of SQL queries\n2. Adapts to various RDBMS systems\n\nIt is intended to be a framework framework; that is, you can build your own ORM\nwith it, focusing on innovative object and collection modeling as opposed to\ndatabase compatibility and query generation.",
8-
"licenses": null,
9-
"email": [
10-
"aaron@tenderlovemaking.com",
11-
"bryan@brynary.com",
12-
"miloops@gmail.com",
13-
"nick@example.org"
14-
],
15-
"authors": [
16-
"Aaron Patterson",
17-
"Bryan Halmkamp",
18-
"Emilio Tagua",
19-
"Nick Kallen"
20-
],
21-
"date": "2011-04-29 00:00:00 UTC",
22-
"requirements": null,
23-
"dependencies": [
24-
"minitest (>= 2.0.2, development)",
25-
"hoe (>= 2.9.1, development)"
26-
],
27-
"files": [
28-
".autotest",
29-
".gemtest",
30-
"History.txt",
31-
"MIT-LICENSE.txt",
32-
"Manifest.txt",
33-
"README.markdown",
34-
"Rakefile",
35-
"arel.gemspec",
36-
"lib/arel.rb",
37-
"lib/arel/alias_predication.rb",
38-
"lib/arel/attributes.rb",
39-
"lib/arel/attributes/attribute.rb",
40-
"lib/arel/compatibility/wheres.rb",
41-
"lib/arel/crud.rb",
42-
"lib/arel/delete_manager.rb",
43-
"lib/arel/deprecated.rb",
44-
"lib/arel/expression.rb",
45-
"lib/arel/expressions.rb",
46-
"lib/arel/factory_methods.rb",
47-
"lib/arel/insert_manager.rb",
48-
"lib/arel/math.rb",
49-
"lib/arel/nodes.rb",
50-
"lib/arel/nodes/and.rb",
51-
"lib/arel/nodes/binary.rb",
52-
"lib/arel/nodes/count.rb",
53-
"lib/arel/nodes/delete_statement.rb",
54-
"lib/arel/nodes/equality.rb",
55-
"lib/arel/nodes/function.rb",
56-
"lib/arel/nodes/in.rb",
57-
"lib/arel/nodes/infix_operation.rb",
58-
"lib/arel/nodes/inner_join.rb",
59-
"lib/arel/nodes/insert_statement.rb",
60-
"lib/arel/nodes/join_source.rb",
61-
"lib/arel/nodes/named_function.rb",
62-
"lib/arel/nodes/node.rb",
63-
"lib/arel/nodes/ordering.rb",
64-
"lib/arel/nodes/outer_join.rb",
65-
"lib/arel/nodes/select_core.rb",
66-
"lib/arel/nodes/select_statement.rb",
67-
"lib/arel/nodes/sql_literal.rb",
68-
"lib/arel/nodes/string_join.rb",
69-
"lib/arel/nodes/table_alias.rb",
70-
"lib/arel/nodes/terminal.rb",
71-
"lib/arel/nodes/unary.rb",
72-
"lib/arel/nodes/unqualified_column.rb",
73-
"lib/arel/nodes/update_statement.rb",
74-
"lib/arel/nodes/values.rb",
75-
"lib/arel/nodes/with.rb",
76-
"lib/arel/order_predications.rb",
77-
"lib/arel/predications.rb",
78-
"lib/arel/relation.rb",
79-
"lib/arel/select_manager.rb",
80-
"lib/arel/sql/engine.rb",
81-
"lib/arel/sql_literal.rb",
82-
"lib/arel/table.rb",
83-
"lib/arel/tree_manager.rb",
84-
"lib/arel/update_manager.rb",
85-
"lib/arel/visitors.rb",
86-
"lib/arel/visitors/depth_first.rb",
87-
"lib/arel/visitors/dot.rb",
88-
"lib/arel/visitors/ibm_db.rb",
89-
"lib/arel/visitors/join_sql.rb",
90-
"lib/arel/visitors/mssql.rb",
91-
"lib/arel/visitors/mysql.rb",
92-
"lib/arel/visitors/oracle.rb",
93-
"lib/arel/visitors/order_clauses.rb",
94-
"lib/arel/visitors/postgresql.rb",
95-
"lib/arel/visitors/sqlite.rb",
96-
"lib/arel/visitors/to_sql.rb",
97-
"lib/arel/visitors/visitor.rb",
98-
"lib/arel/visitors/where_sql.rb",
99-
"test/attributes/test_attribute.rb",
100-
"test/helper.rb",
101-
"test/nodes/test_as.rb",
102-
"test/nodes/test_bin.rb",
103-
"test/nodes/test_count.rb",
104-
"test/nodes/test_delete_statement.rb",
105-
"test/nodes/test_equality.rb",
106-
"test/nodes/test_insert_statement.rb",
107-
"test/nodes/test_named_function.rb",
108-
"test/nodes/test_node.rb",
109-
"test/nodes/test_not.rb",
110-
"test/nodes/test_or.rb",
111-
"test/nodes/test_select_core.rb",
112-
"test/nodes/test_select_statement.rb",
113-
"test/nodes/test_sql_literal.rb",
114-
"test/nodes/test_sum.rb",
115-
"test/nodes/test_update_statement.rb",
116-
"test/support/fake_record.rb",
117-
"test/test_activerecord_compat.rb",
118-
"test/test_attributes.rb",
119-
"test/test_crud.rb",
120-
"test/test_delete_manager.rb",
121-
"test/test_factory_methods.rb",
122-
"test/test_insert_manager.rb",
123-
"test/test_select_manager.rb",
124-
"test/test_table.rb",
125-
"test/test_update_manager.rb",
126-
"test/visitors/test_depth_first.rb",
127-
"test/visitors/test_dot.rb",
128-
"test/visitors/test_ibm_db.rb",
129-
"test/visitors/test_join_sql.rb",
130-
"test/visitors/test_mssql.rb",
131-
"test/visitors/test_mysql.rb",
132-
"test/visitors/test_oracle.rb",
133-
"test/visitors/test_postgres.rb",
134-
"test/visitors/test_sqlite.rb",
135-
"test/visitors/test_to_sql.rb"
136-
],
137-
"test_files": [
138-
"test/attributes/test_attribute.rb",
139-
"test/nodes/test_as.rb",
140-
"test/nodes/test_bin.rb",
141-
"test/nodes/test_count.rb",
142-
"test/nodes/test_delete_statement.rb",
143-
"test/nodes/test_equality.rb",
144-
"test/nodes/test_insert_statement.rb",
145-
"test/nodes/test_named_function.rb",
146-
"test/nodes/test_node.rb",
147-
"test/nodes/test_not.rb",
148-
"test/nodes/test_or.rb",
149-
"test/nodes/test_select_core.rb",
150-
"test/nodes/test_select_statement.rb",
151-
"test/nodes/test_sql_literal.rb",
152-
"test/nodes/test_sum.rb",
153-
"test/nodes/test_update_statement.rb",
154-
"test/test_activerecord_compat.rb",
155-
"test/test_attributes.rb",
156-
"test/test_crud.rb",
157-
"test/test_delete_manager.rb",
158-
"test/test_factory_methods.rb",
159-
"test/test_insert_manager.rb",
160-
"test/test_select_manager.rb",
161-
"test/test_table.rb",
162-
"test/test_update_manager.rb",
163-
"test/visitors/test_depth_first.rb",
164-
"test/visitors/test_dot.rb",
165-
"test/visitors/test_ibm_db.rb",
166-
"test/visitors/test_join_sql.rb",
167-
"test/visitors/test_mssql.rb",
168-
"test/visitors/test_mysql.rb",
169-
"test/visitors/test_oracle.rb",
170-
"test/visitors/test_postgres.rb",
171-
"test/visitors/test_sqlite.rb",
172-
"test/visitors/test_to_sql.rb"
173-
],
174-
"extra_rdoc_files": [
175-
"History.txt",
176-
"MIT-LICENSE.txt",
177-
"Manifest.txt",
178-
"README.markdown"
179-
],
180-
"rubygems_version": "1.6.1",
181-
"required_ruby_version": ">= 0",
182-
"rubyforge_project": "arel",
183-
"loaded_from": "rubygems/arel.gemspec",
184-
"original_platform": null,
185-
"new_platform": "ruby",
186-
"specification_version": 3
187-
}
1+
[
2+
{
3+
"type": "gem",
4+
"namespace": null,
5+
"name": "arel",
6+
"version": "2.0.7.beta.20110429111451",
7+
"qualifiers": {},
8+
"subpath": null,
9+
"primary_language": "Ruby",
10+
"description": "Arel is a SQL AST manager for Ruby. It",
11+
"release_date": null,
12+
"parties": [
13+
{
14+
"type": "person",
15+
"role": "author",
16+
"name": "Aaron Patterson, Bryan Halmkamp, Emilio Tagua, Nick Kallen",
17+
"email": "aaron@tenderlovemaking.com, bryan@brynary.com, miloops@gmail.com, nick@example.org",
18+
"url": null
19+
}
20+
],
21+
"keywords": [],
22+
"homepage_url": "http://github.com/rails/arel",
23+
"download_url": null,
24+
"size": null,
25+
"sha1": null,
26+
"md5": null,
27+
"sha256": null,
28+
"sha512": null,
29+
"bug_tracking_url": null,
30+
"code_view_url": null,
31+
"vcs_url": null,
32+
"copyright": null,
33+
"license_expression": null,
34+
"declared_license": null,
35+
"notice_text": null,
36+
"root_path": null,
37+
"dependencies": [
38+
{
39+
"purl": "pkg:gem/minitest",
40+
"requirement": ">= 2.0.2",
41+
"scope": "dependencies",
42+
"is_runtime": true,
43+
"is_optional": false,
44+
"is_resolved": false
45+
},
46+
{
47+
"purl": "pkg:gem/hoe",
48+
"requirement": ">= 2.9.1",
49+
"scope": "dependencies",
50+
"is_runtime": true,
51+
"is_optional": false,
52+
"is_resolved": false
53+
}
54+
],
55+
"contains_source_code": null,
56+
"source_packages": [],
57+
"purl": "pkg:gem/arel@2.0.7.beta.20110429111451",
58+
"repository_homepage_url": "https://rubygems.org/gems/arel/versions/2.0.7.beta.20110429111451",
59+
"repository_download_url": "https://rubygems.org/downloads/arel-2.0.7.beta.20110429111451.gem",
60+
"api_data_url": "https://rubygems.org/api/v2/rubygems/arel/versions/2.0.7.beta.20110429111451.json"
61+
}
62+
]

0 commit comments

Comments
 (0)