shipstation 0.5.2 → 0.12.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ff856c6dd4f1a291949a2eb50f19669a000b588f
4
- data.tar.gz: c4fd5b2d23a87193c2623e603788d52614ec9b56
3
+ metadata.gz: 23cd5bc9eee43ed47228857fedea840909996240
4
+ data.tar.gz: a7ddc4ce39b2bb71143d3f29687596bcaa379e41
5
5
  SHA512:
6
- metadata.gz: eb2ee571d4967c9223795531a73fc541cb74845708354d13e401d113116fd19d59389863a60e5fc4b1cbebbe20e1c78ec9583a6354dc34e96a38394d62bd00e2
7
- data.tar.gz: 9db4026599df8bcfe8b56faf23e8a83196010d04fdab2875a658808c11307a7e5397b64fed8c9e64ffcf411213ff1ebfb72769bff31b02140b702b7fc1aac985
6
+ metadata.gz: 15e04272e1e2de13e3e23502304829cfe8e1f0a421901350b12ecf2e7c14b261e1f4bbf927ab7f5651832274e069d6719882fca6d11441fe36f0dd4ba1511604
7
+ data.tar.gz: 1fa84e0d02431be1928213ebbeb8acb2d332f2e83df1d05c5d374c79da542f4dd6e5b2d659f38a1db0612812e536e3ab20abeeb9fd52c28633c063d00160e7c1
data/lib/shipstation.rb CHANGED
@@ -1,6 +1,9 @@
1
+ require 'rest-client'
2
+
1
3
  require 'shipstation/api_operations/list'
2
4
  require 'shipstation/api_operations/create'
3
5
  require 'shipstation/api_operations/retrieve'
6
+ require 'shipstation/api_operations/update'
4
7
 
5
8
  require 'shipstation/api_resource'
6
9
  require 'shipstation/order'
@@ -37,21 +40,34 @@ module Shipstation
37
40
  attr_writer :password
38
41
 
39
42
  def request method, resource, params={}
43
+ ss_username = params[:username] || Shipstation.username
44
+ ss_password = params[:password] || Shipstation.password
45
+
46
+ params.except!(:username, :password)
47
+
40
48
  defined? method or raise(
41
49
  ArgumentError, "Request method has not been specified"
42
50
  )
43
51
  defined? resource or raise(
44
52
  ArgumentError, "Request resource has not been specified"
45
53
  )
54
+ if method == :get
55
+ headers = { :accept => :json, content_type: :json }.merge({params: params})
56
+ payload = nil
57
+ else
58
+ headers = { :accept => :json, content_type: :json }
59
+ payload = params
60
+ end
46
61
  RestClient::Request.new({
47
62
  method: method,
48
63
  url: API_BASE + resource,
49
- user: Shipstation.username,
50
- password: Shipstation.password,
51
- payload: params,
52
- headers: { :accept => :json, content_type: :json }
64
+ user: ss_username,
65
+ password: ss_password,
66
+ payload: payload ? payload.to_json : nil,
67
+ headers: headers
53
68
  }).execute do |response, request, result|
54
- JSON.parse(response.to_str)
69
+ str_response = response.to_str
70
+ str_response.blank? ? '' : JSON.parse(str_response)
55
71
  end
56
72
  end
57
73
 
@@ -59,4 +75,4 @@ module Shipstation
59
75
  datetime.strftime("%Y-%m-%d %T")
60
76
  end
61
77
  end
62
- end
78
+ end
@@ -2,10 +2,10 @@ module Shipstation
2
2
  module APIOperations
3
3
  module List
4
4
 
5
- def list
6
- response = Shipstation.request(:get, class_name.downcase.pluralize)
5
+ def list params={}
6
+ response = Shipstation.request(:get, class_name.downcase.pluralize, params)
7
7
 
8
- return response[class_name.downcase.pluralize]
8
+ return response
9
9
  end
10
10
  end
11
11
  end
@@ -2,8 +2,8 @@ module Shipstation
2
2
  module APIOperations
3
3
  module Retrieve
4
4
 
5
- def retrieve object_id
6
- response = Shipstation.request(:get, "#{class_name.downcase.pluralize}/#{object_id}")
5
+ def retrieve object_id, params={}
6
+ response = Shipstation.request(:get, "#{class_name.downcase.pluralize}/#{object_id}", params)
7
7
  return response
8
8
  end
9
9
  end
@@ -0,0 +1,11 @@
1
+ module Shipstation
2
+ module APIOperations
3
+ module Update
4
+
5
+ def update object_id, params={}
6
+ Shipstation.request(:put, "#{class_name.downcase.pluralize}/#{id}", params)
7
+ end
8
+
9
+ end
10
+ end
11
+ end
@@ -16,6 +16,12 @@ module Shipstation
16
16
 
17
17
  return response
18
18
  end
19
+
20
+ # params: { [:username], [:password], input: [ {:order_number, ... }, { :order_number, ... } ] }
21
+ # todo: complete in future phase
22
+ # def create_update_orders params
23
+ # Shipstation.request(:post, "orders/createorders", params)
24
+ # end
19
25
  end
20
26
  end
21
27
  end
@@ -2,5 +2,6 @@ module Shipstation
2
2
  class Product < ApiResource
3
3
  extend Shipstation::APIOperations::List
4
4
  extend Shipstation::APIOperations::Retrieve
5
+ extend Shipstation::APIOperations::Update
5
6
  end
6
- end
7
+ end
@@ -1,6 +1,7 @@
1
1
  module Shipstation
2
2
  class Store < ApiResource
3
3
  extend Shipstation::APIOperations::Retrieve
4
+ extend Shipstation::APIOperations::Update
4
5
 
5
6
  class << self
6
7
  def list
@@ -1,3 +1,3 @@
1
1
  module Shipstation
2
- VERSION = "0.5.2"
2
+ VERSION = "0.12.1"
3
3
  end
@@ -2,6 +2,7 @@ module Shipstation
2
2
  class Warehouse < ApiResource
3
3
  extend Shipstation::APIOperations::Create
4
4
  extend Shipstation::APIOperations::Retrieve
5
+ extend Shipstation::APIOperations::Update
5
6
 
6
7
  class << self
7
8
  def list
@@ -0,0 +1,52 @@
1
+ source 'http://rubygems.org'
2
+
3
+
4
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
5
+ gem 'rails', '4.2.4'
6
+ # Use sqlite3 as the database for Active Record
7
+ gem 'sqlite3'
8
+ # Use SCSS for stylesheets
9
+ gem 'sass-rails', '~> 5.0'
10
+ # Use Uglifier as compressor for JavaScript assets
11
+ gem 'uglifier', '>= 1.3.0'
12
+ # Use CoffeeScript for .coffee assets and views
13
+ gem 'coffee-rails', '~> 4.1.0'
14
+ # See https://github.com/rails/execjs#readme for more supported runtimes
15
+ # gem 'therubyracer', platforms: :ruby
16
+
17
+ # Use jquery as the JavaScript library
18
+ gem 'jquery-rails'
19
+ # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
20
+ gem 'turbolinks'
21
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
22
+ gem 'jbuilder', '~> 2.0'
23
+ # bundle exec rake doc:rails generates the API under doc/api.
24
+ gem 'sdoc', '~> 0.4.0', group: :doc
25
+
26
+ gem 'rest-client'
27
+ gem 'shipstation', path: '/Users/nizar/work/code/shipstation'
28
+
29
+
30
+
31
+ # Use ActiveModel has_secure_password
32
+ # gem 'bcrypt', '~> 3.1.7'
33
+
34
+ # Use Unicorn as the app server
35
+ # gem 'unicorn'
36
+
37
+ # Use Capistrano for deployment
38
+ # gem 'capistrano-rails', group: :development
39
+
40
+ group :development, :test do
41
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
42
+ gem 'byebug'
43
+ end
44
+
45
+ group :development do
46
+ # Access an IRB console on exception pages or by using <%= console %> in views
47
+ gem 'web-console', '~> 2.0'
48
+
49
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
50
+ gem 'spring'
51
+ end
52
+
@@ -0,0 +1,178 @@
1
+ PATH
2
+ remote: /Users/nizar/work/code/shipstation
3
+ specs:
4
+ shipstation (0.3.2)
5
+ rest-client (~> 2)
6
+
7
+ GEM
8
+ remote: http://rubygems.org/
9
+ specs:
10
+ actionmailer (4.2.4)
11
+ actionpack (= 4.2.4)
12
+ actionview (= 4.2.4)
13
+ activejob (= 4.2.4)
14
+ mail (~> 2.5, >= 2.5.4)
15
+ rails-dom-testing (~> 1.0, >= 1.0.5)
16
+ actionpack (4.2.4)
17
+ actionview (= 4.2.4)
18
+ activesupport (= 4.2.4)
19
+ rack (~> 1.6)
20
+ rack-test (~> 0.6.2)
21
+ rails-dom-testing (~> 1.0, >= 1.0.5)
22
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
23
+ actionview (4.2.4)
24
+ activesupport (= 4.2.4)
25
+ builder (~> 3.1)
26
+ erubis (~> 2.7.0)
27
+ rails-dom-testing (~> 1.0, >= 1.0.5)
28
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
29
+ activejob (4.2.4)
30
+ activesupport (= 4.2.4)
31
+ globalid (>= 0.3.0)
32
+ activemodel (4.2.4)
33
+ activesupport (= 4.2.4)
34
+ builder (~> 3.1)
35
+ activerecord (4.2.4)
36
+ activemodel (= 4.2.4)
37
+ activesupport (= 4.2.4)
38
+ arel (~> 6.0)
39
+ activesupport (4.2.4)
40
+ i18n (~> 0.7)
41
+ json (~> 1.7, >= 1.7.7)
42
+ minitest (~> 5.1)
43
+ thread_safe (~> 0.3, >= 0.3.4)
44
+ tzinfo (~> 1.1)
45
+ arel (6.0.4)
46
+ binding_of_caller (0.7.2)
47
+ debug_inspector (>= 0.0.1)
48
+ builder (3.2.3)
49
+ byebug (9.0.6)
50
+ coffee-rails (4.1.1)
51
+ coffee-script (>= 2.2.0)
52
+ railties (>= 4.0.0, < 5.1.x)
53
+ coffee-script (2.4.1)
54
+ coffee-script-source
55
+ execjs
56
+ coffee-script-source (1.12.2)
57
+ concurrent-ruby (1.0.5)
58
+ debug_inspector (0.0.2)
59
+ domain_name (0.5.20170404)
60
+ unf (>= 0.0.5, < 1.0.0)
61
+ erubis (2.7.0)
62
+ execjs (2.7.0)
63
+ globalid (0.3.7)
64
+ activesupport (>= 4.1.0)
65
+ http-cookie (1.0.3)
66
+ domain_name (~> 0.5)
67
+ i18n (0.8.1)
68
+ jbuilder (2.6.3)
69
+ activesupport (>= 3.0.0, < 5.2)
70
+ multi_json (~> 1.2)
71
+ jquery-rails (4.3.1)
72
+ rails-dom-testing (>= 1, < 3)
73
+ railties (>= 4.2.0)
74
+ thor (>= 0.14, < 2.0)
75
+ json (1.8.6)
76
+ loofah (2.0.3)
77
+ nokogiri (>= 1.5.9)
78
+ mail (2.6.4)
79
+ mime-types (>= 1.16, < 4)
80
+ mime-types (3.1)
81
+ mime-types-data (~> 3.2015)
82
+ mime-types-data (3.2016.0521)
83
+ mini_portile2 (2.1.0)
84
+ minitest (5.10.1)
85
+ multi_json (1.12.1)
86
+ netrc (0.11.0)
87
+ nokogiri (1.7.1)
88
+ mini_portile2 (~> 2.1.0)
89
+ rack (1.6.5)
90
+ rack-test (0.6.3)
91
+ rack (>= 1.0)
92
+ rails (4.2.4)
93
+ actionmailer (= 4.2.4)
94
+ actionpack (= 4.2.4)
95
+ actionview (= 4.2.4)
96
+ activejob (= 4.2.4)
97
+ activemodel (= 4.2.4)
98
+ activerecord (= 4.2.4)
99
+ activesupport (= 4.2.4)
100
+ bundler (>= 1.3.0, < 2.0)
101
+ railties (= 4.2.4)
102
+ sprockets-rails
103
+ rails-deprecated_sanitizer (1.0.3)
104
+ activesupport (>= 4.2.0.alpha)
105
+ rails-dom-testing (1.0.8)
106
+ activesupport (>= 4.2.0.beta, < 5.0)
107
+ nokogiri (~> 1.6)
108
+ rails-deprecated_sanitizer (>= 1.0.1)
109
+ rails-html-sanitizer (1.0.3)
110
+ loofah (~> 2.0)
111
+ railties (4.2.4)
112
+ actionpack (= 4.2.4)
113
+ activesupport (= 4.2.4)
114
+ rake (>= 0.8.7)
115
+ thor (>= 0.18.1, < 2.0)
116
+ rake (12.0.0)
117
+ rdoc (4.3.0)
118
+ rest-client (2.0.1)
119
+ http-cookie (>= 1.0.2, < 2.0)
120
+ mime-types (>= 1.16, < 4.0)
121
+ netrc (~> 0.8)
122
+ sass (3.4.23)
123
+ sass-rails (5.0.6)
124
+ railties (>= 4.0.0, < 6)
125
+ sass (~> 3.1)
126
+ sprockets (>= 2.8, < 4.0)
127
+ sprockets-rails (>= 2.0, < 4.0)
128
+ tilt (>= 1.1, < 3)
129
+ sdoc (0.4.2)
130
+ json (~> 1.7, >= 1.7.7)
131
+ rdoc (~> 4.0)
132
+ spring (2.0.1)
133
+ activesupport (>= 4.2)
134
+ sprockets (3.7.1)
135
+ concurrent-ruby (~> 1.0)
136
+ rack (> 1, < 3)
137
+ sprockets-rails (3.2.0)
138
+ actionpack (>= 4.0)
139
+ activesupport (>= 4.0)
140
+ sprockets (>= 3.0.0)
141
+ sqlite3 (1.3.13)
142
+ thor (0.19.4)
143
+ thread_safe (0.3.6)
144
+ tilt (2.0.7)
145
+ turbolinks (5.0.1)
146
+ turbolinks-source (~> 5)
147
+ turbolinks-source (5.0.0)
148
+ tzinfo (1.2.3)
149
+ thread_safe (~> 0.1)
150
+ uglifier (3.1.13)
151
+ execjs (>= 0.3.0, < 3)
152
+ unf (0.1.4)
153
+ unf_ext
154
+ unf_ext (0.0.7.2)
155
+ web-console (2.3.0)
156
+ activemodel (>= 4.0)
157
+ binding_of_caller (>= 0.7.2)
158
+ railties (>= 4.0)
159
+ sprockets-rails (>= 2.0, < 4.0)
160
+
161
+ PLATFORMS
162
+ ruby
163
+
164
+ DEPENDENCIES
165
+ byebug
166
+ coffee-rails (~> 4.1.0)
167
+ jbuilder (~> 2.0)
168
+ jquery-rails
169
+ rails (= 4.2.4)
170
+ rest-client
171
+ sass-rails (~> 5.0)
172
+ sdoc (~> 0.4.0)
173
+ shipstation!
174
+ spring
175
+ sqlite3
176
+ turbolinks
177
+ uglifier (>= 1.3.0)
178
+ web-console (~> 2.0)
@@ -10,4 +10,7 @@
10
10
  // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
11
  // about supported directives.
12
12
  //
13
+ //= require jquery
14
+ //= require jquery_ujs
15
+ //= require turbolinks
13
16
  //= require_tree .
data/test/dummy/bin/rails CHANGED
@@ -1,4 +1,9 @@
1
1
  #!/usr/bin/env ruby
2
+ begin
3
+ load File.expand_path('../spring', __FILE__)
4
+ rescue LoadError => e
5
+ raise unless e.message.include?('spring')
6
+ end
2
7
  APP_PATH = File.expand_path('../../config/application', __FILE__)
3
8
  require_relative '../config/boot'
4
9
  require 'rails/commands'
data/test/dummy/bin/rake CHANGED
@@ -1,4 +1,9 @@
1
1
  #!/usr/bin/env ruby
2
+ begin
3
+ load File.expand_path('../spring', __FILE__)
4
+ rescue LoadError => e
5
+ raise unless e.message.include?('spring')
6
+ end
2
7
  require_relative '../config/boot'
3
8
  require 'rake'
4
9
  Rake.application.run
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # This file loads spring without using Bundler, in order to be fast.
4
+ # It gets overwritten when you run the `spring binstub` command.
5
+
6
+ unless defined?(Spring)
7
+ require 'rubygems'
8
+ require 'bundler'
9
+
10
+ lockfile = Bundler::LockfileParser.new(Bundler.default_lockfile.read)
11
+ spring = lockfile.specs.detect { |spec| spec.name == "spring" }
12
+ if spring
13
+ Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path
14
+ gem 'spring', spring.version
15
+ require 'spring/binstub'
16
+ end
17
+ end
@@ -2,8 +2,9 @@ require File.expand_path('../boot', __FILE__)
2
2
 
3
3
  require 'rails/all'
4
4
 
5
+ # Require the gems listed in Gemfile, including any gems
6
+ # you've limited to :test, :development, or :production.
5
7
  Bundler.require(*Rails.groups)
6
- require "shipstation"
7
8
 
8
9
  module Dummy
9
10
  class Application < Rails::Application
@@ -23,4 +24,3 @@ module Dummy
23
24
  config.active_record.raise_in_transactional_callbacks = true
24
25
  end
25
26
  end
26
-
@@ -1,5 +1,3 @@
1
- # Set up gems listed in the Gemfile.
2
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__)
1
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
3
2
 
4
- require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
5
- $LOAD_PATH.unshift File.expand_path('../../../../lib', __FILE__)
3
+ require 'bundler/setup' # Set up gems listed in the Gemfile.
@@ -0,0 +1,2 @@
1
+ Shipstation.username = '9d5a864d104b49a293d3ff2601ac89b4'
2
+ Shipstation.password = 'ba3adb5094aa45b8aac9b354c7c6912a'
@@ -11,10 +11,10 @@
11
11
  # if you're sharing your code publicly.
12
12
 
13
13
  development:
14
- secret_key_base: 0da976f6371d62cf77eef45d60295645364bf77ad7fe0e87fbf6122619bb65f196bee66d90b72911119a1f2a7f416c3a5327d59f90b576411845e66c406336b0
14
+ secret_key_base: c115471810b56ef0a8e7be097e61df21f4a59b46d95244bef54df588594ccdc537e4ee28666546297c0d1b76c57a57ed0c2639e0dff3d3518ef23baa69dc5fec
15
15
 
16
16
  test:
17
- secret_key_base: 5b2e0b39b0da23b2e5542514ce1b43b42630e40cada0f392715e4454ab772c1bf023e092ee903ef98d60d0eb93b027b0881070383edcc0404dc840216315ae2d
17
+ secret_key_base: 8b4ddaab51da0a2b280221ff51ff48ee824f24f1f578e57053d979e1b705b5950a296595c1f272eaa0d04b029ea8abcbea648ab357c4f3f080cf5e0a60b2a33c
18
18
 
19
19
  # Do not keep production secrets in the repository,
20
20
  # instead read values from the environment.
@@ -0,0 +1,7 @@
1
+ # This file should contain all the record creation needed to seed the database with its default values.
2
+ # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
3
+ #
4
+ # Examples:
5
+ #
6
+ # cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
7
+ # Mayor.create(name: 'Emanuel', city: cities.first)
@@ -0,0 +1,5 @@
1
+ # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-agent: *
5
+ # Disallow: /
@@ -0,0 +1,10 @@
1
+ ENV['RAILS_ENV'] ||= 'test'
2
+ require File.expand_path('../../config/environment', __FILE__)
3
+ require 'rails/test_help'
4
+
5
+ class ActiveSupport::TestCase
6
+ # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
7
+ fixtures :all
8
+
9
+ # Add more helper methods to be used by all tests here...
10
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shipstation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.12.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Dallimore
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-19 00:00:00.000000000 Z
11
+ date: 2017-04-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client
@@ -37,6 +37,7 @@ files:
37
37
  - lib/shipstation/api_operations/create.rb
38
38
  - lib/shipstation/api_operations/list.rb
39
39
  - lib/shipstation/api_operations/retrieve.rb
40
+ - lib/shipstation/api_operations/update.rb
40
41
  - lib/shipstation/api_resource.rb
41
42
  - lib/shipstation/carrier.rb
42
43
  - lib/shipstation/customer.rb
@@ -48,6 +49,8 @@ files:
48
49
  - lib/shipstation/version.rb
49
50
  - lib/shipstation/warehouse.rb
50
51
  - lib/tasks/shipstation_tasks.rake
52
+ - test/dummy/Gemfile
53
+ - test/dummy/Gemfile.lock
51
54
  - test/dummy/README.rdoc
52
55
  - test/dummy/Rakefile
53
56
  - test/dummy/app/assets/javascripts/application.js
@@ -59,6 +62,7 @@ files:
59
62
  - test/dummy/bin/rails
60
63
  - test/dummy/bin/rake
61
64
  - test/dummy/bin/setup
65
+ - test/dummy/bin/spring
62
66
  - test/dummy/config.ru
63
67
  - test/dummy/config/application.rb
64
68
  - test/dummy/config/boot.rb
@@ -74,14 +78,18 @@ files:
74
78
  - test/dummy/config/initializers/inflections.rb
75
79
  - test/dummy/config/initializers/mime_types.rb
76
80
  - test/dummy/config/initializers/session_store.rb
81
+ - test/dummy/config/initializers/shipstation.rb
77
82
  - test/dummy/config/initializers/wrap_parameters.rb
78
83
  - test/dummy/config/locales/en.yml
79
84
  - test/dummy/config/routes.rb
80
85
  - test/dummy/config/secrets.yml
86
+ - test/dummy/db/seeds.rb
81
87
  - test/dummy/public/404.html
82
88
  - test/dummy/public/422.html
83
89
  - test/dummy/public/500.html
84
90
  - test/dummy/public/favicon.ico
91
+ - test/dummy/public/robots.txt
92
+ - test/dummy/test/test_helper.rb
85
93
  - test/shipstation_test.rb
86
94
  - test/test_helper.rb
87
95
  homepage: https://github.com/Jellyfishboy/shipstation
@@ -118,6 +126,7 @@ test_files:
118
126
  - test/dummy/bin/rails
119
127
  - test/dummy/bin/rake
120
128
  - test/dummy/bin/setup
129
+ - test/dummy/bin/spring
121
130
  - test/dummy/config/application.rb
122
131
  - test/dummy/config/boot.rb
123
132
  - test/dummy/config/database.yml
@@ -132,16 +141,22 @@ test_files:
132
141
  - test/dummy/config/initializers/inflections.rb
133
142
  - test/dummy/config/initializers/mime_types.rb
134
143
  - test/dummy/config/initializers/session_store.rb
144
+ - test/dummy/config/initializers/shipstation.rb
135
145
  - test/dummy/config/initializers/wrap_parameters.rb
136
146
  - test/dummy/config/locales/en.yml
137
147
  - test/dummy/config/routes.rb
138
148
  - test/dummy/config/secrets.yml
139
149
  - test/dummy/config.ru
150
+ - test/dummy/db/seeds.rb
151
+ - test/dummy/Gemfile
152
+ - test/dummy/Gemfile.lock
140
153
  - test/dummy/public/404.html
141
154
  - test/dummy/public/422.html
142
155
  - test/dummy/public/500.html
143
156
  - test/dummy/public/favicon.ico
157
+ - test/dummy/public/robots.txt
144
158
  - test/dummy/Rakefile
145
159
  - test/dummy/README.rdoc
160
+ - test/dummy/test/test_helper.rb
146
161
  - test/shipstation_test.rb
147
162
  - test/test_helper.rb