unlimit 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eba32d679ee469fe3d8409bb3ef56041a35af9702c6da8f08b2e2b73322e6ec9
4
- data.tar.gz: 03e3577fb0c245213b3b95f9d9ebf1af8f71087c4323ac7ef36800ba419c095f
3
+ metadata.gz: e800ee943eb907d97c19a2d4763654ed14ff53aec827b97f9e9ea339f2588402
4
+ data.tar.gz: 5719937ee73feebd38aa2f50d30f08c558d3739517147874ba7087dd78ee935c
5
5
  SHA512:
6
- metadata.gz: 55aeddde38ec4c8959e712d1cddef076429bb3b6d7e6ef5a88506ce8aee93c3f1a1614df3e7ee094ede8cfac53d195c1f3534fd4a72cd4050ce51e0a48b685ab
7
- data.tar.gz: a71051d83726106704497f030d2d381f7f7a6e02e11d263f303f0d71f49ad3f78be59e368baf010b7a4f66f6609d4e7bd0651b2007b865e6722cee2a41cf3de9
6
+ metadata.gz: a8b8f2940e95ee8f4674b6a5df83a0190a02b6bb38d19923926a29db0cc62b3b919eedfdf865dc1d297d83f1783b02e7c6b8a26b92d0dc4c8b284438e304ebad
7
+ data.tar.gz: 5d498d185d71ae0ebf4f1fac16c6808dc539f92f731d01d80c5ef17d973dbe5cffe13a49c07180fa6f4e6df43ec01e177fc20594779fd812d99d111467c84821
@@ -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
 
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- unlimit (0.0.2)
4
+ unlimit (0.0.4)
5
5
  configure_extensions
6
6
  fastlane (>= 2.116.0)
7
7
  highline
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
- If your iOS/Mac 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.
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
- After installing the gem, just run:
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. Any feedback or feature suggesions are also encouraged.
93
+ Bug reports and pull requests are welcome.
76
94
 
77
95
  ## FAQs
78
96
 
@@ -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)
@@ -1,3 +1,3 @@
1
1
  module Unlimit
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -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 = ['unlimit']
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.3
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