simplificator-billboard-api 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -3,3 +3,4 @@
3
3
  coverage
4
4
  rdoc
5
5
  pkg
6
+ nbproject
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.1.0
@@ -0,0 +1,59 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{billboard-api}
8
+ s.version = "0.1.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["simplificator"]
12
+ s.date = %q{2009-08-14}
13
+ s.description = %q{Billboard-API is needed to add the additional models for the billboard application.}
14
+ s.email = %q{info@simplificator.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".gitignore",
22
+ "LICENSE",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "billboard-api.gemspec",
27
+ "lib/billboard-api.rb",
28
+ "lib/billboard-api/currency.rb",
29
+ "lib/billboard-api/customer.rb",
30
+ "lib/billboard-api/order.rb.rb",
31
+ "lib/billboard-api/payment_method.rb",
32
+ "lib/billboard-api/tax.rb",
33
+ "test/billboard-api_test.rb",
34
+ "test/test_helper.rb"
35
+ ]
36
+ s.has_rdoc = true
37
+ s.homepage = %q{http://github.com/simplificator/billboard-api}
38
+ s.rdoc_options = ["--charset=UTF-8"]
39
+ s.require_paths = ["lib"]
40
+ s.rubygems_version = %q{1.3.1}
41
+ s.summary = %q{TODO: one-line summary of your gem}
42
+ s.test_files = [
43
+ "test/billboard-api_test.rb",
44
+ "test/test_helper.rb"
45
+ ]
46
+
47
+ if s.respond_to? :specification_version then
48
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
49
+ s.specification_version = 2
50
+
51
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
52
+ s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
53
+ else
54
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
55
+ end
56
+ else
57
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
58
+ end
59
+ end
data/lib/billboard-api.rb CHANGED
@@ -0,0 +1,5 @@
1
+ require File.join(File.dirname(__FILE__), 'billboard-api', 'order')
2
+ require File.join(File.dirname(__FILE__), 'billboard-api', 'customer')
3
+ require File.join(File.dirname(__FILE__), 'billboard-api', 'payment_method')
4
+ require File.join(File.dirname(__FILE__), 'billboard-api', 'currency')
5
+ require File.join(File.dirname(__FILE__), 'billboard-api', 'tax')
@@ -0,0 +1,5 @@
1
+ module BillboardApi
2
+ class Currency
3
+ self.site = "http://billboard.garden.u2.simplificator.com"
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ module BillboardApi
2
+ class Customer
3
+ self.site = "http://billboard.garden.u2.simplificator.com"
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ module BillboardApi
2
+ class Order
3
+ self.site = "http://billboard.garden.u2.simplificator.com"
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ module BillboardApi
2
+ class PaymentMethod
3
+ self.site = "http://billboard.garden.u2.simplificator.com"
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ module BillboardApi
2
+ class Tax
3
+ self.site = "http://billboard.garden.u2.simplificator.com"
4
+ end
5
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simplificator-billboard-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - simplificator
@@ -38,7 +38,13 @@ files:
38
38
  - README.rdoc
39
39
  - Rakefile
40
40
  - VERSION
41
+ - billboard-api.gemspec
41
42
  - lib/billboard-api.rb
43
+ - lib/billboard-api/currency.rb
44
+ - lib/billboard-api/customer.rb
45
+ - lib/billboard-api/order.rb.rb
46
+ - lib/billboard-api/payment_method.rb
47
+ - lib/billboard-api/tax.rb
42
48
  - test/billboard-api_test.rb
43
49
  - test/test_helper.rb
44
50
  has_rdoc: true