shopkeep_reports 1.0.0
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 +7 -0
- data/.gitignore +22 -0
- data/.rspec +1 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +67 -0
- data/Rakefile +2 -0
- data/lib/shopkeep_reports/client.rb +95 -0
- data/lib/shopkeep_reports/configuration.rb +47 -0
- data/lib/shopkeep_reports/downloader.rb +57 -0
- data/lib/shopkeep_reports/version.rb +3 -0
- data/lib/shopkeep_reports.rb +23 -0
- data/shopkeep_reports.gemspec +28 -0
- data/spec/spec_helper.rb +2 -0
- metadata +142 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 8dd1f8a99699ff380b7c06bcb7aa2f2734c09e7e
|
4
|
+
data.tar.gz: 3da7a4f911d40da5a6a27963a2d60aa0da16d886
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 656e7facf7b193c31a6f3ece840362aa0d41bdb22407c2cb04f4c432be8dddcb1049662d4241182311fe8f090322728a1c44e421304e3c9b46638ccb699b2526
|
7
|
+
data.tar.gz: f6ebbe962864a929dec07b726674279cc33f366ff11b51ea97af579c256998cf2b416d6ac34010425bf6e90c803879e0a57ffb890bc5158fa02eb61beb7c85e3
|
data/.gitignore
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
.bundle
|
4
|
+
.config
|
5
|
+
.yardoc
|
6
|
+
Gemfile.lock
|
7
|
+
InstalledFiles
|
8
|
+
_yardoc
|
9
|
+
coverage
|
10
|
+
doc/
|
11
|
+
lib/bundler/man
|
12
|
+
pkg
|
13
|
+
rdoc
|
14
|
+
spec/reports
|
15
|
+
test/tmp
|
16
|
+
test/version_tmp
|
17
|
+
tmp
|
18
|
+
*.bundle
|
19
|
+
*.so
|
20
|
+
*.o
|
21
|
+
*.a
|
22
|
+
mkmf.log
|
data/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--color --format documentation
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Kunwar Aditya Raghuwanshi
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
# ShopkeepReports
|
2
|
+
|
3
|
+
Gem for downloading shopkeep reports via mechanize
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'shopkeep_reports'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install shopkeep_reports
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
### Initialize with ENV variables set
|
22
|
+
|
23
|
+
```ruby
|
24
|
+
# config/initializers/shopekeep.rb
|
25
|
+
# ENV['SHOPKEEP_EMAIL'] & ENV['SHOPKEEP_PASSWORD'] & ENV['SHOPKEEP_ACCOUNT'] should be set
|
26
|
+
ShopkeepReports.configure do
|
27
|
+
end
|
28
|
+
```
|
29
|
+
|
30
|
+
else
|
31
|
+
|
32
|
+
```ruby
|
33
|
+
ShopkeepReports.configure do |c|
|
34
|
+
c.email = 'me@example.com'
|
35
|
+
c.password = 'my_password'
|
36
|
+
c.account = 'awesomecompany'
|
37
|
+
end
|
38
|
+
```
|
39
|
+
|
40
|
+
### Use
|
41
|
+
|
42
|
+
Provided functions return a file name stored in your root/tmp directory
|
43
|
+
|
44
|
+
```ruby
|
45
|
+
d = ShopkeepReports::Downloader.new
|
46
|
+
d.customer_report
|
47
|
+
|
48
|
+
d.sales_report(Time.now - 1.month, Time.now)
|
49
|
+
# OR
|
50
|
+
d.sales_report
|
51
|
+
|
52
|
+
# Similarly start and end date optional parameters for:
|
53
|
+
d.sold_items_report
|
54
|
+
d.returns_report
|
55
|
+
d.returned_items_report
|
56
|
+
|
57
|
+
d.download_inventory
|
58
|
+
d.download_transactions(start_date: Time.now - 1.week, end_date: Time.now, detailed: true, tenders: false)
|
59
|
+
```
|
60
|
+
|
61
|
+
## Contributing
|
62
|
+
|
63
|
+
1. Fork it ( https://github.com/[my-github-username]/shopkeep_reports/fork )
|
64
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
65
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
66
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
67
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,95 @@
|
|
1
|
+
require 'singleton'
|
2
|
+
require 'mechanize'
|
3
|
+
require 'open-uri'
|
4
|
+
|
5
|
+
module ShopkeepReports
|
6
|
+
class Client
|
7
|
+
include Singleton
|
8
|
+
|
9
|
+
@@agent = false
|
10
|
+
@@cookie_jar = false
|
11
|
+
@@token = false
|
12
|
+
attr_accessor :agent, :cookie_jar, :token
|
13
|
+
|
14
|
+
def self.instance
|
15
|
+
@@instance ||= new
|
16
|
+
end
|
17
|
+
|
18
|
+
def authorize(params = {})
|
19
|
+
return @@agent if @@agent
|
20
|
+
@username = configuration.email
|
21
|
+
@password = configuration.password
|
22
|
+
login
|
23
|
+
end
|
24
|
+
|
25
|
+
def download_report(report_link, type = 'get', start_date = nil, end_date = nil)
|
26
|
+
new_agent = Mechanize.new
|
27
|
+
new_agent.cookie_jar = @@cookie_jar
|
28
|
+
case type
|
29
|
+
when 'get'
|
30
|
+
new_agent.get(report_link)
|
31
|
+
if !start_date.blank? and !end_date.blank?
|
32
|
+
new_agent.page.forms.first.set_fields({
|
33
|
+
'start_date' => start_date.to_s,
|
34
|
+
'end_date' => end_date.to_s
|
35
|
+
})
|
36
|
+
end
|
37
|
+
new_agent.page.forms.first.submit
|
38
|
+
when 'post'
|
39
|
+
new_agent.post(report_link, { 'authenticity_token' => @@token })
|
40
|
+
end
|
41
|
+
download_link = new_agent.page.link_with(:text => 'Download')
|
42
|
+
if download_link.blank?
|
43
|
+
file_uri = new_agent.page.forms.first.submit.uri
|
44
|
+
else
|
45
|
+
file_uri = download_link.uri
|
46
|
+
end
|
47
|
+
file_name = File.join(ShopkeepReports.root, 'tmp', (file_uri.to_s.split('.csv').first.split('/').last + '.csv'))
|
48
|
+
File.open(file_name, "wb") do |file|
|
49
|
+
file_uri.open do |uri|
|
50
|
+
file.write(uri.read)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
file_name
|
54
|
+
rescue Exception => e
|
55
|
+
reset
|
56
|
+
raise ShopkeepException, "#{e.message}"
|
57
|
+
end
|
58
|
+
|
59
|
+
def download_report_link(report_link)
|
60
|
+
new_agent = Mechanize.new
|
61
|
+
new_agent.cookie_jar = @@cookie_jar
|
62
|
+
download = new_agent.get(report_link)
|
63
|
+
file_body = download.body
|
64
|
+
file_name = File.join(ShopkeepReports.root, 'tmp', download.filename)
|
65
|
+
File.open(file_name, "wb") do |file|
|
66
|
+
file.write(file_body)
|
67
|
+
end
|
68
|
+
file_name
|
69
|
+
rescue Exception => e
|
70
|
+
reset
|
71
|
+
raise ShopkeepException, "#{e.message}"
|
72
|
+
end
|
73
|
+
|
74
|
+
private
|
75
|
+
def configuration
|
76
|
+
ShopkeepReports.configuration
|
77
|
+
end
|
78
|
+
|
79
|
+
def login
|
80
|
+
agent = Mechanize.new
|
81
|
+
agent.get(configuration.uri('/login'))
|
82
|
+
form = agent.page.forms.first
|
83
|
+
form.login = @username
|
84
|
+
form.password = @password
|
85
|
+
form.submit
|
86
|
+
@@cookie_jar = agent.cookie_jar
|
87
|
+
@@token = agent.page.at('meta[@name="csrf-token"]')['content']
|
88
|
+
@@agent = agent
|
89
|
+
end
|
90
|
+
|
91
|
+
def reset
|
92
|
+
@@agent = false
|
93
|
+
end
|
94
|
+
end
|
95
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
require 'singleton'
|
2
|
+
|
3
|
+
module ShopkeepReports
|
4
|
+
class Configuration
|
5
|
+
include Singleton
|
6
|
+
|
7
|
+
attr_accessor :email, :password, :account
|
8
|
+
|
9
|
+
def self.instance
|
10
|
+
@@instance ||= new
|
11
|
+
end
|
12
|
+
|
13
|
+
def init(args = {})
|
14
|
+
@email = default_email
|
15
|
+
@password = default_password
|
16
|
+
@account = default_account
|
17
|
+
args.each_pair do |option, value|
|
18
|
+
self.send("#{option}=", value)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
def valid?
|
23
|
+
result = true
|
24
|
+
[:email, :password, :account].each do |value|
|
25
|
+
result = false if self.send(value).blank?
|
26
|
+
end
|
27
|
+
result
|
28
|
+
end
|
29
|
+
|
30
|
+
def uri(path)
|
31
|
+
"https://" + @account + ".shopkeepapp.com" + path
|
32
|
+
end
|
33
|
+
|
34
|
+
private
|
35
|
+
def default_email
|
36
|
+
ENV['SHOPKEEP_EMAIL']
|
37
|
+
end
|
38
|
+
|
39
|
+
def default_password
|
40
|
+
ENV['SHOPKEEP_PASSWORD']
|
41
|
+
end
|
42
|
+
|
43
|
+
def default_account
|
44
|
+
ENV['SHOPKEEP_ACCOUNT']
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
@@ -0,0 +1,57 @@
|
|
1
|
+
module ShopkeepReports
|
2
|
+
class Downloader
|
3
|
+
def initialize
|
4
|
+
raise ShopkeepException, "Configuration is invalid" unless Configuration.instance.valid?
|
5
|
+
end
|
6
|
+
|
7
|
+
def customer_report
|
8
|
+
Client.instance.authorize
|
9
|
+
Client.instance.download_report(configuration.uri('/customers/create_export'), 'post')
|
10
|
+
end
|
11
|
+
|
12
|
+
def sales_report(start_date = nil, end_date = nil)
|
13
|
+
Client.instance.authorize
|
14
|
+
Client.instance.download_report(configuration.uri('/exports/sales/new'), 'get', start_date, end_date)
|
15
|
+
end
|
16
|
+
|
17
|
+
def sold_items_report(start_date = nil, end_date = nil)
|
18
|
+
Client.instance.authorize
|
19
|
+
Client.instance.download_report(configuration.uri('/sold_items/new_export'), 'get', start_date, end_date)
|
20
|
+
end
|
21
|
+
|
22
|
+
def returns_report(start_date = nil, end_date = nil)
|
23
|
+
Client.instance.authorize
|
24
|
+
Client.instance.download_report(configuration.uri('/returns/new_export'), 'get', start_date, end_date)
|
25
|
+
end
|
26
|
+
|
27
|
+
def returned_items_report(start_date = nil, end_date = nil)
|
28
|
+
Client.instance.authorize
|
29
|
+
Client.instance.download_report(configuration.uri('/returned_items/new_export'), 'get', start_date, end_date)
|
30
|
+
end
|
31
|
+
|
32
|
+
def download_inventory
|
33
|
+
Client.instance.authorize
|
34
|
+
Client.instance.download_report_link(configuration.uri('/stock_items_exports/export_bulk_inventory'))
|
35
|
+
end
|
36
|
+
|
37
|
+
def download_transactions(args = {})
|
38
|
+
start_date = args.fetch(:start_at, Time.now.beginning_of_day)
|
39
|
+
end_date = args.fetch(:end_date, Time.now)
|
40
|
+
detailed = args.fetch(:detailed, false)
|
41
|
+
tenders = args.fetch(:tenders, false)
|
42
|
+
query = {
|
43
|
+
start_date: start_date.strftime("%B %d %Y %I:%M %p"),
|
44
|
+
end_date: end_date.strftime("%B %d %Y %I:%M %p"),
|
45
|
+
detailed: detailed,
|
46
|
+
tenders: tenders
|
47
|
+
}
|
48
|
+
Client.instance.authorize
|
49
|
+
Client.instance.download_report_link(configuration.uri("/transactions.csv?#{query.to_query}"))
|
50
|
+
end
|
51
|
+
|
52
|
+
private
|
53
|
+
def configuration
|
54
|
+
ShopkeepReports.configuration
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require "active_support/all"
|
2
|
+
require "shopkeep_reports/version"
|
3
|
+
require "shopkeep_reports/configuration"
|
4
|
+
require "shopkeep_reports/client"
|
5
|
+
require "shopkeep_reports/downloader"
|
6
|
+
|
7
|
+
module ShopkeepReports
|
8
|
+
class << self
|
9
|
+
attr_accessor :configuration
|
10
|
+
end
|
11
|
+
|
12
|
+
class ShopkeepException < StandardError; end
|
13
|
+
|
14
|
+
def self.configure
|
15
|
+
Configuration.instance.init
|
16
|
+
self.configuration ||= Configuration.instance
|
17
|
+
yield(configuration)
|
18
|
+
end
|
19
|
+
|
20
|
+
def self.root
|
21
|
+
File.dirname __dir__
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'shopkeep_reports/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "shopkeep_reports"
|
8
|
+
spec.version = ShopkeepReports::VERSION
|
9
|
+
spec.authors = ["Kunwar Aditya Raghuwanshi"]
|
10
|
+
spec.email = ["adi.version1@gmail.com"]
|
11
|
+
spec.summary = %q{Download Shopkeep Reports}
|
12
|
+
spec.description = %q{Gem for downloading shopkeep reports via mechanize}
|
13
|
+
spec.homepage = "http://github.com/kitwalker12/shopkeep_reports"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.6"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
spec.add_development_dependency "rspec"
|
24
|
+
spec.add_development_dependency "pry"
|
25
|
+
|
26
|
+
spec.add_runtime_dependency "activesupport"
|
27
|
+
spec.add_runtime_dependency "mechanize"
|
28
|
+
end
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,142 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: shopkeep_reports
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Kunwar Aditya Raghuwanshi
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-05-20 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.6'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.6'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: pry
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: activesupport
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: mechanize
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - '>='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - '>='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
description: Gem for downloading shopkeep reports via mechanize
|
98
|
+
email:
|
99
|
+
- adi.version1@gmail.com
|
100
|
+
executables: []
|
101
|
+
extensions: []
|
102
|
+
extra_rdoc_files: []
|
103
|
+
files:
|
104
|
+
- .gitignore
|
105
|
+
- .rspec
|
106
|
+
- Gemfile
|
107
|
+
- LICENSE.txt
|
108
|
+
- README.md
|
109
|
+
- Rakefile
|
110
|
+
- lib/shopkeep_reports.rb
|
111
|
+
- lib/shopkeep_reports/client.rb
|
112
|
+
- lib/shopkeep_reports/configuration.rb
|
113
|
+
- lib/shopkeep_reports/downloader.rb
|
114
|
+
- lib/shopkeep_reports/version.rb
|
115
|
+
- shopkeep_reports.gemspec
|
116
|
+
- spec/spec_helper.rb
|
117
|
+
homepage: http://github.com/kitwalker12/shopkeep_reports
|
118
|
+
licenses:
|
119
|
+
- MIT
|
120
|
+
metadata: {}
|
121
|
+
post_install_message:
|
122
|
+
rdoc_options: []
|
123
|
+
require_paths:
|
124
|
+
- lib
|
125
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
126
|
+
requirements:
|
127
|
+
- - '>='
|
128
|
+
- !ruby/object:Gem::Version
|
129
|
+
version: '0'
|
130
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
131
|
+
requirements:
|
132
|
+
- - '>='
|
133
|
+
- !ruby/object:Gem::Version
|
134
|
+
version: '0'
|
135
|
+
requirements: []
|
136
|
+
rubyforge_project:
|
137
|
+
rubygems_version: 2.2.2
|
138
|
+
signing_key:
|
139
|
+
specification_version: 4
|
140
|
+
summary: Download Shopkeep Reports
|
141
|
+
test_files:
|
142
|
+
- spec/spec_helper.rb
|