bigcommerce 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +3 -1
- data/bigcommerce.gemspec +4 -2
- data/lib/bigcommerce.rb +5 -2
- data/lib/bigcommerce/api.rb +8 -0
- metadata +4 -5
- data/lib/bigcommerce/version.rb +0 -3
data/Rakefile
CHANGED
data/bigcommerce.gemspec
CHANGED
@@ -1,8 +1,10 @@
|
|
1
1
|
|
2
|
+
require 'lib/bigcommerce'
|
3
|
+
|
2
4
|
Gem::Specification.new do |s|
|
3
5
|
s.name = "bigcommerce"
|
4
|
-
s.version =
|
5
|
-
s.date = "
|
6
|
+
s.version = BigCommerce::VERSION
|
7
|
+
s.date = Time.now.strftime("%Y-%m-%d")
|
6
8
|
s.summary = "Enables Ruby applications to communicate with the BigCommerce API"
|
7
9
|
s.email = "dev-accounts@bigcommerce.com"
|
8
10
|
s.homepage = "http://github.com/bigcommerce/bigcommerce-api-ruby"
|
data/lib/bigcommerce.rb
CHANGED
@@ -5,6 +5,9 @@ require "net/https"
|
|
5
5
|
require "rubygems"
|
6
6
|
require "json"
|
7
7
|
|
8
|
-
require File.join(File.dirname(__FILE__), 'bigcommerce', 'version')
|
9
8
|
require File.join(File.dirname(__FILE__), 'bigcommerce', 'api')
|
10
|
-
require File.join(File.dirname(__FILE__), 'bigcommerce', 'connection')
|
9
|
+
require File.join(File.dirname(__FILE__), 'bigcommerce', 'connection')
|
10
|
+
|
11
|
+
module BigCommerce
|
12
|
+
VERSION = "0.0.4"
|
13
|
+
end
|
data/lib/bigcommerce/api.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bigcommerce
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 23
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 4
|
10
|
+
version: 0.0.4
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- BigCommerce
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-10-
|
18
|
+
date: 2011-10-15 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: json
|
@@ -46,7 +46,6 @@ files:
|
|
46
46
|
- bigcommerce.gemspec
|
47
47
|
- lib/bigcommerce/api.rb
|
48
48
|
- lib/bigcommerce/connection.rb
|
49
|
-
- lib/bigcommerce/version.rb
|
50
49
|
- lib/bigcommerce.rb
|
51
50
|
homepage: http://github.com/bigcommerce/bigcommerce-api-ruby
|
52
51
|
licenses: []
|
data/lib/bigcommerce/version.rb
DELETED