razsell 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/razsell/constants.rb +5 -0
- data/lib/{engine.rb → razsell/engine.rb} +2 -2
- data/lib/{product_line_parser.rb → razsell/product_line_parser.rb} +1 -1
- data/lib/{query.rb → razsell/query.rb} +1 -1
- data/lib/razsell.rb +5 -5
- data/razsell.gemspec +14 -14
- data/test/engine_test.rb +0 -2
- data/test/product_line_parser_test.rb +1 -1
- data/test/product_types_test.rb +0 -1
- data/test/query_test.rb +0 -1
- data/test/test_helper.rb +2 -2
- metadata +14 -14
- data/lib/constants.rb +0 -5
- /data/lib/{constants → razsell/constants}/image_sizes.rb +0 -0
- /data/lib/{constants → razsell/constants}/product_types.rb +0 -0
- /data/lib/{constants → razsell/constants}/sort_methods.rb +0 -0
- /data/lib/{constants → razsell/constants}/sort_periods.rb +0 -0
- /data/lib/{http_service.rb → razsell/http_service.rb} +0 -0
- /data/lib/{item.rb → razsell/item.rb} +0 -0
- /data/lib/{product_line.rb → razsell/product_line.rb} +0 -0
- /data/lib/{results.rb → razsell/results.rb} +0 -0
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.5
|
data/lib/razsell.rb
CHANGED
data/razsell.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{razsell}
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.5"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Jamal Hansen"]
|
12
|
-
s.date = %q{
|
12
|
+
s.date = %q{2010-01-10}
|
13
13
|
s.email = %q{jamal.hansen@gmail.com}
|
14
14
|
s.extra_rdoc_files = [
|
15
15
|
"LICENSE",
|
@@ -29,19 +29,19 @@ Gem::Specification.new do |s|
|
|
29
29
|
"features/step_definitions/razsell_steps.rb",
|
30
30
|
"features/support/env.rb",
|
31
31
|
"features/support/razsell_mixed_in.rb",
|
32
|
-
"lib/constants.rb",
|
33
|
-
"lib/constants/image_sizes.rb",
|
34
|
-
"lib/constants/product_types.rb",
|
35
|
-
"lib/constants/sort_methods.rb",
|
36
|
-
"lib/constants/sort_periods.rb",
|
37
|
-
"lib/engine.rb",
|
38
|
-
"lib/http_service.rb",
|
39
|
-
"lib/item.rb",
|
40
|
-
"lib/product_line.rb",
|
41
|
-
"lib/product_line_parser.rb",
|
42
|
-
"lib/query.rb",
|
43
32
|
"lib/razsell.rb",
|
44
|
-
"lib/
|
33
|
+
"lib/razsell/constants.rb",
|
34
|
+
"lib/razsell/constants/image_sizes.rb",
|
35
|
+
"lib/razsell/constants/product_types.rb",
|
36
|
+
"lib/razsell/constants/sort_methods.rb",
|
37
|
+
"lib/razsell/constants/sort_periods.rb",
|
38
|
+
"lib/razsell/engine.rb",
|
39
|
+
"lib/razsell/http_service.rb",
|
40
|
+
"lib/razsell/item.rb",
|
41
|
+
"lib/razsell/product_line.rb",
|
42
|
+
"lib/razsell/product_line_parser.rb",
|
43
|
+
"lib/razsell/query.rb",
|
44
|
+
"lib/razsell/results.rb",
|
45
45
|
"razsell.gemspec",
|
46
46
|
"test/engine_test.rb",
|
47
47
|
"test/fixtures.rb",
|
data/test/engine_test.rb
CHANGED
data/test/product_types_test.rb
CHANGED
data/test/query_test.rb
CHANGED
data/test/test_helper.rb
CHANGED
@@ -3,8 +3,8 @@ require 'test/unit'
|
|
3
3
|
require 'shoulda'
|
4
4
|
require 'fixtures'
|
5
5
|
|
6
|
-
|
7
|
-
|
6
|
+
#$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
7
|
+
#$LOAD_PATH.unshift(File.dirname(__FILE__))
|
8
8
|
require 'razsell'
|
9
9
|
|
10
10
|
require 'mocha'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: razsell
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
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:
|
12
|
+
date: 2010-01-10 00:00:00 -06:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -75,19 +75,19 @@ files:
|
|
75
75
|
- features/step_definitions/razsell_steps.rb
|
76
76
|
- features/support/env.rb
|
77
77
|
- features/support/razsell_mixed_in.rb
|
78
|
-
- lib/constants.rb
|
79
|
-
- lib/constants/image_sizes.rb
|
80
|
-
- lib/constants/product_types.rb
|
81
|
-
- lib/constants/sort_methods.rb
|
82
|
-
- lib/constants/sort_periods.rb
|
83
|
-
- lib/engine.rb
|
84
|
-
- lib/http_service.rb
|
85
|
-
- lib/item.rb
|
86
|
-
- lib/product_line.rb
|
87
|
-
- lib/product_line_parser.rb
|
88
|
-
- lib/query.rb
|
89
78
|
- lib/razsell.rb
|
90
|
-
- lib/
|
79
|
+
- lib/razsell/constants.rb
|
80
|
+
- lib/razsell/constants/image_sizes.rb
|
81
|
+
- lib/razsell/constants/product_types.rb
|
82
|
+
- lib/razsell/constants/sort_methods.rb
|
83
|
+
- lib/razsell/constants/sort_periods.rb
|
84
|
+
- lib/razsell/engine.rb
|
85
|
+
- lib/razsell/http_service.rb
|
86
|
+
- lib/razsell/item.rb
|
87
|
+
- lib/razsell/product_line.rb
|
88
|
+
- lib/razsell/product_line_parser.rb
|
89
|
+
- lib/razsell/query.rb
|
90
|
+
- lib/razsell/results.rb
|
91
91
|
- razsell.gemspec
|
92
92
|
- test/engine_test.rb
|
93
93
|
- test/fixtures.rb
|
data/lib/constants.rb
DELETED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|