zendesk_apps_tools 2.7.0 → 2.7.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 +4 -4
- data/README.md +20 -10
- data/app_template_iframe/assets/iframe.html +1 -1
- data/lib/zendesk_apps_tools/package_helper.rb +1 -1
- data/lib/zendesk_apps_tools/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8872d6ddd9187cd76d217f5f7258478d00fd099a
|
4
|
+
data.tar.gz: 7a5c6809c25ff49acc2fc455b2523b156605228f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f290d826981108d4caeaba5ef70dedcc8e89d3c7e27b42305d95b5813cc51337f46bc27fe9153ad6f9416359e2e3961db9d9b521023b2e4cb0106847b069b254
|
7
|
+
data.tar.gz: c612984ae11b1021b7978fa447d4dbcd09290c07e5b37755b18689334cbd912230abfc7edc59c9ae2559fe0b2b146ba8f320c54b026f3c3a489bd197abfad1d3
|
data/README.md
CHANGED
@@ -1,30 +1,40 @@
|
|
1
1
|
# Zendesk Apps Tools
|
2
2
|
|
3
3
|
## Description
|
4
|
-
Zendesk Apps Tools (ZAT)
|
4
|
+
Zendesk Apps Tools (ZAT) are a collection of local development tools that simplify building and deploying [Zendesk apps](https://developer.zendesk.com/apps/docs/apps-v2/getting_started).
|
5
5
|
|
6
6
|
## Owners
|
7
|
-
This repo is owned and maintained by the Zendesk Apps team. You can reach us on vegemite@zendesk.com. We are located in Melbourne
|
7
|
+
This repo is owned and maintained by the Zendesk Apps team. You can reach us on vegemite@zendesk.com. We are located in Melbourne.
|
8
8
|
|
9
|
-
##
|
10
|
-
|
9
|
+
## Install and use ZAT
|
10
|
+
ZAT is a Ruby gem. You don't need to know Ruby to use the tools but you do need to install Ruby to install the gem.
|
11
11
|
|
12
|
-
|
13
|
-
When you want to help **develop** this tool, you will need to clone this repo and run `bundle install` to get it going.
|
12
|
+
To install, run `gem install zendesk_apps_tools`.
|
14
13
|
|
15
|
-
|
14
|
+
To get the latest version, run `gem update zendesk_apps_tools`.
|
15
|
+
|
16
|
+
For information on using the tools, see [Zendesk App Tools](https://developer.zendesk.com/apps/docs/apps-v2/getting_started#zendesk-app-tools) on developer.zendesk.com.
|
17
|
+
|
18
|
+
## Work on ZAT
|
19
|
+
If you want to help **develop** this tool, clone this repo and run `bundle install`.
|
20
|
+
|
21
|
+
ZAT uses a gem called [ZAS](https://github.com/zendesk/zendesk_apps_support/). If you're developing ZAT, you'll probably want to edit code in ZAS too. To do so, you need to clone the ZAS repo and change the `Gemfile` in the ZAT project to say:
|
22
|
+
|
23
|
+
`gem 'zendesk_apps_support', path: '../zendesk_apps_support'`
|
24
|
+
|
25
|
+
The path should point to your local ZAS directory. In this way, your clone of ZAT will use a local version of ZAS, which is very helpful for development. Run a `bundle install` after changing the Gemfile.
|
16
26
|
|
17
27
|
## Testing
|
18
|
-
This project uses rspec, which can
|
28
|
+
This project uses rspec, which you can run with `bundle exec rake`.
|
19
29
|
|
20
30
|
## Contribute
|
21
|
-
Improvements are always welcome. To contribute
|
31
|
+
Improvements are always welcome. To contribute:
|
22
32
|
|
23
33
|
* Put up a PR into the master branch.
|
24
34
|
* CC and get two +1 from @zendesk/vegemite.
|
25
35
|
|
26
36
|
## Bugs
|
27
|
-
|
37
|
+
You can report bugs as issues here on GitHub. You can also submit a bug to support@zendesk.com. Mention "zendesk_apps_tools" in the ticket so it can be assigned to the right team.
|
28
38
|
|
29
39
|
# Copyright and license
|
30
40
|
Copyright 2013 Zendesk
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<head>
|
3
3
|
<meta charset="utf-8">
|
4
4
|
<!-- http://garden.zendesk.com -->
|
5
|
-
<link rel="stylesheet" href="https://assets.zendesk.com/apps/sdk-assets/css/
|
5
|
+
<link rel="stylesheet" href="https://assets.zendesk.com/apps/sdk-assets/css/2/zendesk_garden.css" type="text/css">
|
6
6
|
</head>
|
7
7
|
<body>
|
8
8
|
<h2 class="u-gamma">Hello, World!</h2>
|
@@ -9,7 +9,7 @@ module ZendeskAppsTools
|
|
9
9
|
def manifest
|
10
10
|
begin
|
11
11
|
@manifest ||= app_package.manifest
|
12
|
-
rescue
|
12
|
+
rescue Errno::ENOENT
|
13
13
|
say_status "error", "Manifest file cannot be found in the given path. Check you are pointing to the path that contains your manifest.json", :red and exit 1
|
14
14
|
end
|
15
15
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zendesk_apps_tools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.7.
|
4
|
+
version: 2.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James A. Rosen
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2017-
|
14
|
+
date: 2017-11-06 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: thor
|