unlimit 0.0.3 → 0.0.4
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/CHANGELOG.md +6 -0
- data/Gemfile.lock +1 -1
- data/README.md +22 -4
- data/bin/unlimit-xcode +20 -0
- data/lib/unlimit/version.rb +1 -1
- data/unlimit.gemspec +1 -1
- metadata +3 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e800ee943eb907d97c19a2d4763654ed14ff53aec827b97f9e9ea339f2588402
|
4
|
+
data.tar.gz: 5719937ee73feebd38aa2f50d30f08c558d3739517147874ba7087dd78ee935c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8b8f2940e95ee8f4674b6a5df83a0190a02b6bb38d19923926a29db0cc62b3b919eedfdf865dc1d297d83f1783b02e7c6b8a26b92d0dc4c8b284438e304ebad
|
7
|
+
data.tar.gz: 5d498d185d71ae0ebf4f1fac16c6808dc539f92f731d01d80c5ef17d973dbe5cffe13a49c07180fa6f4e6df43ec01e177fc20594779fd812d99d111467c84821
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,10 @@
|
|
1
1
|
# Change Log
|
2
|
+
## [0.0.4](https://github.com/biocross/unlimit/releases/tag/0.0.4)
|
3
|
+
Released on 2019-08-24.
|
4
|
+
|
5
|
+
#### Fixed
|
6
|
+
- Unlimit adds a new binary `unlimit-xcode` to avoid a naming conflict with the system binary `unlimit`. Use this new command to run unlimit without bundler!
|
7
|
+
|
2
8
|
## [0.0.3](https://github.com/biocross/unlimit/releases/tag/0.0.3)
|
3
9
|
Released on 2019-08-24.
|
4
10
|
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -10,7 +10,17 @@ Unlimit is a simple tool to quickly run your app on your device without worrying
|
|
10
10
|
|
11
11
|
## Installation
|
12
12
|
|
13
|
-
|
13
|
+
#### Using RubyGems
|
14
|
+
|
15
|
+
Install unlimit by running:
|
16
|
+
|
17
|
+
```
|
18
|
+
$ gem install unlimit
|
19
|
+
```
|
20
|
+
|
21
|
+
#### Using Bundler
|
22
|
+
|
23
|
+
If your Xcode project does not have a `Gemfile` yet, [learn how to set it up here](https://www.mokacoding.com/blog/ruby-for-ios-developers-bundler/). It's highly recommended you use [**bundler**](https://bundler.io/) to maintain consistent versions of tools like `cocoapods`, `fastlane` etc within your team.
|
14
24
|
|
15
25
|
To use unlimit, add this line to your app's Gemfile:
|
16
26
|
|
@@ -25,7 +35,13 @@ And then install it using [bundler](https://bundler.io/) by executing:
|
|
25
35
|
|
26
36
|
## Usage
|
27
37
|
|
28
|
-
|
38
|
+
If you installed using `gem install`, run this in the same folder as your **.xcodeproj** file:
|
39
|
+
|
40
|
+
```
|
41
|
+
$ unlimit-xcode
|
42
|
+
```
|
43
|
+
|
44
|
+
If you're using `bundler`, run:
|
29
45
|
|
30
46
|
$ bundle exec unlimit
|
31
47
|
|
@@ -70,9 +86,11 @@ Like the above script, You can use a few handy variables that unlimit will autom
|
|
70
86
|
| `UNLIMIT_APP_BUNDLE_ID` | The unique app **bundle ID** generated by unlimit |
|
71
87
|
| `UNLIMIT_APP_GROUP_NAME` | The **app group id** generated by unlimit |
|
72
88
|
|
73
|
-
## Contributing
|
89
|
+
## Feedback & Contributing
|
90
|
+
|
91
|
+
If unlimit does not work for you, please [report it](https://github.com/biocross/unlimit/issues/new), I might have missed a lot of edge cases! Any feedback or feature suggesions are also encouraged.
|
74
92
|
|
75
|
-
Bug reports and pull requests are welcome.
|
93
|
+
Bug reports and pull requests are welcome.
|
76
94
|
|
77
95
|
## FAQs
|
78
96
|
|
data/bin/unlimit-xcode
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
require 'unlimit'
|
5
|
+
require 'optparse'
|
6
|
+
|
7
|
+
unlimiter = Unlimit::CLI.new
|
8
|
+
options = {}
|
9
|
+
|
10
|
+
OptionParser.new do |opt|
|
11
|
+
opt.on('--project XCODEPROJ') { |o| options['project_path'] = o }
|
12
|
+
opt.on('--plist INFO_PLIST') { |o| options['plist_path'] = o }
|
13
|
+
opt.on('--target TARGET_NAME') { |o| options['target_name'] = o }
|
14
|
+
opt.on('--team_id TEAM_ID') { |o| options['team_id'] = o }
|
15
|
+
opt.on('--configuration CONFIGURATION_YAML_FILE') { |o| options['configuration'] = o }
|
16
|
+
opt.on('--keep_fabric') { |_o| options['keep_fabric'] = true }
|
17
|
+
opt.on('--version') { unlimiter.showVersion }
|
18
|
+
end.parse!
|
19
|
+
|
20
|
+
unlimiter.start(options)
|
data/lib/unlimit/version.rb
CHANGED
data/unlimit.gemspec
CHANGED
@@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
|
|
31
31
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
32
32
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
33
33
|
end
|
34
|
-
spec.executables = [
|
34
|
+
spec.executables = %w[unlimit unlimit-xcode]
|
35
35
|
spec.require_paths = ['lib']
|
36
36
|
|
37
37
|
spec.add_dependency 'xcodeproj'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: unlimit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Siddharth Gupta
|
@@ -114,6 +114,7 @@ email:
|
|
114
114
|
- sids.1992@gmail.com
|
115
115
|
executables:
|
116
116
|
- unlimit
|
117
|
+
- unlimit-xcode
|
117
118
|
extensions: []
|
118
119
|
extra_rdoc_files: []
|
119
120
|
files:
|
@@ -127,6 +128,7 @@ files:
|
|
127
128
|
- bin/console
|
128
129
|
- bin/setup
|
129
130
|
- bin/unlimit
|
131
|
+
- bin/unlimit-xcode
|
130
132
|
- images/max_devices.png
|
131
133
|
- images/unregistered.png
|
132
134
|
- lib/unlimit.rb
|