produce 0.1.4 → 0.1.5
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 +5 -3
- data/lib/produce/version.rb +1 -1
- data/lib/produce.rb +2 -0
- 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: ad511fe99084653dd3b7aee0646309422c7a42fe
|
|
4
|
+
data.tar.gz: d4eff8f101e8248cf614ab5363586852e68f9857
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bcb5c9b784374210d524ef9392925fa4ac00228566d57affcda00c87d0effcdccf7734410705cbccc72b3916ee066d763c9caaa5ee0228f001d55bb8a203396e
|
|
7
|
+
data.tar.gz: d9e3ef16c7aae31843f1e63fe7e78fccebc8e6455b7119920b8fb19fee02cb2620eaf51bce8a9bd2a470a71fe37a80dccf88f3d6467aa14140145637c36c5562
|
data/README.md
CHANGED
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
<a href="https://github.com/KrauseFx/frameit">frameit</a> •
|
|
12
12
|
<a href="https://github.com/KrauseFx/PEM">PEM</a> •
|
|
13
13
|
<a href="https://github.com/KrauseFx/sigh">sigh</a> •
|
|
14
|
-
<b>produce</b>
|
|
14
|
+
<b>produce</b> •
|
|
15
|
+
<a href="https://github.com/KrauseFx/cert">cert</a>
|
|
15
16
|
</p>
|
|
16
17
|
-------
|
|
17
18
|
|
|
@@ -76,8 +77,8 @@ In case you want to pass more information to `produce`:
|
|
|
76
77
|
- `PRODUCE_LANGUAGE` (the language you want your app to use, e.g. `English`, `German`)
|
|
77
78
|
- `PRODUCE_VERSION` (the initial app version)
|
|
78
79
|
- `PRODUCE_SKU` (the SKU you want to use, which must be a unique number)
|
|
79
|
-
- `
|
|
80
|
-
- `
|
|
80
|
+
- `FASTLANE_TEAM_ID` (the Team ID, e.g. `Q2CBPK58CA`)
|
|
81
|
+
- `FASTLANE_TEAM_NAME` (the Team Name, e.g. `Felix Krause`)
|
|
81
82
|
|
|
82
83
|
## [`fastlane`](https://github.com/KrauseFx/fastlane) Integration
|
|
83
84
|
|
|
@@ -126,6 +127,7 @@ You'll still have to fill out the remaining information (like screenshots, app d
|
|
|
126
127
|
- [`frameit`](https://github.com/KrauseFx/frameit): Quickly put your screenshots into the right device frames
|
|
127
128
|
- [`PEM`](https://github.com/KrauseFx/pem): Automatically generate and renew your push notification profiles
|
|
128
129
|
- [`sigh`](https://github.com/KrauseFx/sigh): Because you would rather spend your time building stuff than fighting provisioning
|
|
130
|
+
- [`cert`](https://github.com/KrauseFx/cert): Automatically create and maintain iOS code signing certificates
|
|
129
131
|
|
|
130
132
|
# Need help?
|
|
131
133
|
- If there is a technical problem with `produce`, submit an issue.
|
data/lib/produce/version.rb
CHANGED
data/lib/produce.rb
CHANGED
|
@@ -7,6 +7,8 @@ require 'produce/developer_center'
|
|
|
7
7
|
require 'produce/itunes_connect'
|
|
8
8
|
require 'produce/available_default_languages'
|
|
9
9
|
|
|
10
|
+
require 'fastlane_core'
|
|
11
|
+
|
|
10
12
|
module Produce
|
|
11
13
|
Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore
|
|
12
14
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: produce
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-02-
|
|
11
|
+
date: 2015-02-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fastlane_core
|