magentor 0.1.0 → 0.1.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.1.0
1
+ 0.1.2
data/init.rb CHANGED
@@ -1 +1 @@
1
- require 'magento'
1
+ require 'magentor'
data/magentor.gemspec ADDED
@@ -0,0 +1,64 @@
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{magentor}
8
+ s.version = "0.1.2"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Preston Stuteville"]
12
+ s.date = %q{2010-09-24}
13
+ s.email = %q{preston.stuteville@gmail.com}
14
+ s.extra_rdoc_files = [
15
+ "README.rdoc"
16
+ ]
17
+ s.files = [
18
+ "MIT-LICENSE",
19
+ "README.rdoc",
20
+ "Rakefile",
21
+ "TODOS",
22
+ "VERSION",
23
+ "init.rb",
24
+ "lib/magento/base.rb",
25
+ "lib/magento/category.rb",
26
+ "lib/magento/category_attribute.rb",
27
+ "lib/magento/connection.rb",
28
+ "lib/magento/country.rb",
29
+ "lib/magento/customer.rb",
30
+ "lib/magento/customer_address.rb",
31
+ "lib/magento/customer_group.rb",
32
+ "lib/magento/inventory.rb",
33
+ "lib/magento/invoice.rb",
34
+ "lib/magento/order.rb",
35
+ "lib/magento/product.rb",
36
+ "lib/magento/product_attribute.rb",
37
+ "lib/magento/product_attribute_set.rb",
38
+ "lib/magento/product_link.rb",
39
+ "lib/magento/product_media.rb",
40
+ "lib/magento/product_stock.rb",
41
+ "lib/magento/product_tier_price.rb",
42
+ "lib/magento/product_type.rb",
43
+ "lib/magento/region.rb",
44
+ "lib/magento/shipment.rb",
45
+ "lib/magentor.rb",
46
+ "magentor.gemspec"
47
+ ]
48
+ s.homepage = %q{http://github.com/pstuteville/magentor}
49
+ s.rdoc_options = ["--main", "README.rdoc", "--inline-source", "--line-numbers"]
50
+ s.require_paths = ["lib"]
51
+ s.rubygems_version = %q{1.3.7}
52
+ s.summary = %q{Ruby wrapper for the Magento xmlrpc api}
53
+
54
+ if s.respond_to? :specification_version then
55
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
56
+ s.specification_version = 3
57
+
58
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
59
+ else
60
+ end
61
+ else
62
+ end
63
+ end
64
+
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: magentor
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 31
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
9
+ - 2
10
+ version: 0.1.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Preston Stuteville
@@ -34,7 +34,6 @@ files:
34
34
  - TODOS
35
35
  - VERSION
36
36
  - init.rb
37
- - lib/magento.rb
38
37
  - lib/magento/base.rb
39
38
  - lib/magento/category.rb
40
39
  - lib/magento/category_attribute.rb
@@ -56,6 +55,8 @@ files:
56
55
  - lib/magento/product_type.rb
57
56
  - lib/magento/region.rb
58
57
  - lib/magento/shipment.rb
58
+ - lib/magentor.rb
59
+ - magentor.gemspec
59
60
  has_rdoc: true
60
61
  homepage: http://github.com/pstuteville/magentor
61
62
  licenses: []
File without changes