rubyyot-razsell 0.0.0 → 0.0.1
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 +1 -1
- data/VERSION +1 -1
- data/razsell.gemspec +87 -0
- metadata +4 -3
data/Rakefile
CHANGED
@@ -9,7 +9,7 @@ begin
|
|
9
9
|
gem.email = "jamal.hansen@gmail.com"
|
10
10
|
gem.homepage = "http://github.com/rubyyot/razsell"
|
11
11
|
gem.authors = ["Jamal Hansen"]
|
12
|
-
gem.add_dependency('hpricot')
|
12
|
+
gem.add_dependency('hpricot', '>= 0.8.1')
|
13
13
|
gem.add_development_dependency('cucumber', '>= 0.3.11')
|
14
14
|
gem.add_development_dependency('mocha')
|
15
15
|
gem.add_development_dependency('technicalpickles-shoulda')
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.1
|
data/razsell.gemspec
ADDED
@@ -0,0 +1,87 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = %q{razsell}
|
5
|
+
s.version = "0.0.1"
|
6
|
+
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
|
+
s.authors = ["Jamal Hansen"]
|
9
|
+
s.date = %q{2009-07-09}
|
10
|
+
s.email = %q{jamal.hansen@gmail.com}
|
11
|
+
s.extra_rdoc_files = [
|
12
|
+
"LICENSE",
|
13
|
+
"README.rdoc"
|
14
|
+
]
|
15
|
+
s.files = [
|
16
|
+
".document",
|
17
|
+
".gitignore",
|
18
|
+
"LICENSE",
|
19
|
+
"README.rdoc",
|
20
|
+
"Rakefile",
|
21
|
+
"VERSION",
|
22
|
+
"docs/RSSGuide1.02.pdf",
|
23
|
+
"features/razsell.feature",
|
24
|
+
"features/step_definitions/razsell_steps.rb",
|
25
|
+
"features/support/env.rb",
|
26
|
+
"features/support/razsell_mixed_in.rb",
|
27
|
+
"lib/constants.rb",
|
28
|
+
"lib/constants/image_sizes.rb",
|
29
|
+
"lib/constants/product_types.rb",
|
30
|
+
"lib/constants/sort_methods.rb",
|
31
|
+
"lib/constants/sort_periods.rb",
|
32
|
+
"lib/engine.rb",
|
33
|
+
"lib/http_service.rb",
|
34
|
+
"lib/item.rb",
|
35
|
+
"lib/query.rb",
|
36
|
+
"lib/razsell.rb",
|
37
|
+
"lib/results.rb",
|
38
|
+
"razsell.gemspec",
|
39
|
+
"test/engine_test.rb",
|
40
|
+
"test/fixtures.rb",
|
41
|
+
"test/fixtures/page_1.rss",
|
42
|
+
"test/fixtures/page_2.rss",
|
43
|
+
"test/fixtures/rockstar.rss",
|
44
|
+
"test/product_types_test.rb",
|
45
|
+
"test/query_test.rb",
|
46
|
+
"test/razsell_test.rb",
|
47
|
+
"test/results_test.rb",
|
48
|
+
"test/test_helper.rb"
|
49
|
+
]
|
50
|
+
s.has_rdoc = true
|
51
|
+
s.homepage = %q{http://github.com/rubyyot/razsell}
|
52
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
53
|
+
s.require_paths = ["lib"]
|
54
|
+
s.rubygems_version = %q{1.3.1}
|
55
|
+
s.summary = %q{A gem for getting info about products on a website that has a similar name}
|
56
|
+
s.test_files = [
|
57
|
+
"test/engine_test.rb",
|
58
|
+
"test/fixtures.rb",
|
59
|
+
"test/results_test.rb",
|
60
|
+
"test/test_helper.rb",
|
61
|
+
"test/product_types_test.rb",
|
62
|
+
"test/razsell_test.rb",
|
63
|
+
"test/query_test.rb"
|
64
|
+
]
|
65
|
+
|
66
|
+
if s.respond_to? :specification_version then
|
67
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
68
|
+
s.specification_version = 2
|
69
|
+
|
70
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
71
|
+
s.add_runtime_dependency(%q<hpricot>, [">= 0.8.1"])
|
72
|
+
s.add_development_dependency(%q<cucumber>, [">= 0.3.11"])
|
73
|
+
s.add_development_dependency(%q<mocha>, [">= 0"])
|
74
|
+
s.add_development_dependency(%q<technicalpickles-shoulda>, [">= 0"])
|
75
|
+
else
|
76
|
+
s.add_dependency(%q<hpricot>, [">= 0.8.1"])
|
77
|
+
s.add_dependency(%q<cucumber>, [">= 0.3.11"])
|
78
|
+
s.add_dependency(%q<mocha>, [">= 0"])
|
79
|
+
s.add_dependency(%q<technicalpickles-shoulda>, [">= 0"])
|
80
|
+
end
|
81
|
+
else
|
82
|
+
s.add_dependency(%q<hpricot>, [">= 0.8.1"])
|
83
|
+
s.add_dependency(%q<cucumber>, [">= 0.3.11"])
|
84
|
+
s.add_dependency(%q<mocha>, [">= 0"])
|
85
|
+
s.add_dependency(%q<technicalpickles-shoulda>, [">= 0"])
|
86
|
+
end
|
87
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubyyot-razsell
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jamal Hansen
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-07-
|
12
|
+
date: 2009-07-09 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -20,7 +20,7 @@ dependencies:
|
|
20
20
|
requirements:
|
21
21
|
- - ">="
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version:
|
23
|
+
version: 0.8.1
|
24
24
|
version:
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: cucumber
|
@@ -84,6 +84,7 @@ files:
|
|
84
84
|
- lib/query.rb
|
85
85
|
- lib/razsell.rb
|
86
86
|
- lib/results.rb
|
87
|
+
- razsell.gemspec
|
87
88
|
- test/engine_test.rb
|
88
89
|
- test/fixtures.rb
|
89
90
|
- test/fixtures/page_1.rss
|