cocoapods-vemars 0.0.2 → 0.0.3
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db2b7ede8ac9872aa0750683c6cf6b937e7c5bfe619a1419acb3b946da631fdd
|
4
|
+
data.tar.gz: add3cfba272b078af7e24c2aa0a5e9acded640aba24f3bdeb6b653e74c7ecc6d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3404059e79b56c1d3786d0a4a4c4f91c77259f54178b0a9e5bd16e6211f95202ea375a269563c21fa31dd379486872609f769c57e91eb5ab690c2e0286565268
|
7
|
+
data.tar.gz: d0bd479ded7c05962eb9c9b928b774ec5b90544cdba259b1c0f5b1eaeedd9f883be61cb070b1ead7218dcba7602f557c2bddf1b7e05df81040ed58855355d9e7
|
data/Gemfile
CHANGED
@@ -3,14 +3,16 @@ source 'https://rubygems.org'
|
|
3
3
|
# Specify your gem's dependencies in cocoapods-vemars.gemspec
|
4
4
|
gemspec
|
5
5
|
|
6
|
+
gem 'plist', '~> 3.2'
|
7
|
+
gem 'rexml'
|
8
|
+
gem 'concurrent-ruby', require: 'concurrent'
|
9
|
+
gem 'xcodeproj'
|
10
|
+
gem 'json'
|
11
|
+
gem 'cocoapods'
|
12
|
+
|
6
13
|
group :debug do
|
7
|
-
gem '
|
8
|
-
|
9
|
-
# gem 'debase', '0.2.5.beta2'
|
10
|
-
gem 'plist', '~> 3.2'
|
11
|
-
gem 'rexml'
|
12
|
-
gem 'concurrent-ruby', require: 'concurrent'
|
13
|
-
gem 'xcodeproj'
|
14
|
+
gem 'ruby-debug-ide'
|
15
|
+
gem 'debase', '0.2.5.beta2'
|
14
16
|
end
|
15
17
|
|
16
18
|
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
cocoapods-vemars (0.0.
|
4
|
+
cocoapods-vemars (0.0.2)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
@@ -100,6 +100,7 @@ DEPENDENCIES
|
|
100
100
|
cocoapods
|
101
101
|
cocoapods-vemars!
|
102
102
|
concurrent-ruby
|
103
|
+
json
|
103
104
|
plist (~> 3.2)
|
104
105
|
rake
|
105
106
|
rexml
|
@@ -77,8 +77,9 @@ module Pod
|
|
77
77
|
end
|
78
78
|
|
79
79
|
Dir.chdir(project_dir) do
|
80
|
-
system('bundle install')
|
81
|
-
system('bundle exec pod install --repo-update')
|
80
|
+
# system('bundle install')
|
81
|
+
# system('bundle exec pod install --repo-update')
|
82
|
+
system('pod install --repo-update')
|
82
83
|
end
|
83
84
|
end
|
84
85
|
|
@@ -63,8 +63,9 @@ module Pod
|
|
63
63
|
end
|
64
64
|
|
65
65
|
Dir.chdir(project_dir) do
|
66
|
-
system('bundle install')
|
67
|
-
system('bundle exec pod install --repo-update')
|
66
|
+
# system('bundle install')
|
67
|
+
# system('bundle exec pod install --repo-update')
|
68
|
+
system('pod install --repo-update')
|
68
69
|
end
|
69
70
|
end
|
70
71
|
|