ios_analytics 0.0.4 → 0.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 25de22a81875e1d4a6ebc2c14a9e488ab3b833b7
4
- data.tar.gz: 38aca1bd209067a44cb6c65c55fe5010f0265cdf
3
+ metadata.gz: e0cc2cacc8cc84fa066d0e6c5cc9d58546e79819
4
+ data.tar.gz: c2c27ead662365a3dcd6955105aab874e6b5e2e1
5
5
  SHA512:
6
- metadata.gz: 32fd3e74df44b350cde851fb859b8cc83f2a9669d08b1059803f30447d65c474a33e741558e39e7da6fd3f59c08a7b97779360cb549cccb53f14ad920cee8cb8
7
- data.tar.gz: d0aa3207f8c3f7d576c6d64e0b219184e4be99f7c3c553aa061410e62f9542a4dfb1775708d4f73733305d3b492d4534a82e5f5fc4fe9ef303749f6689719234
6
+ metadata.gz: 56ff0962019ada4eceab1e9222d56472189b575691419361131d86d869a09e252b4d168d8ad6f66d96760722ce6af234f0e57d2e1029874602e8fc8f5edf9b3b
7
+ data.tar.gz: 6683d94e780f1e349365638b309f9211f3686b2642faa9e1d76dc8961c19381db1420c6b529db3ffa3b8cd919c7e7588944567a3313a27d77c18e917a2795a4c
data/.gitignore CHANGED
@@ -9,3 +9,4 @@
9
9
  /tmp/
10
10
 
11
11
  /samples/
12
+ /vendor/
data/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # iOS Analytics
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/ios_analytics`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
3
+ Translate plist format into checkstyle format.
6
4
 
7
5
  ## Installation
8
6
 
@@ -22,7 +20,18 @@ Or install it yourself as:
22
20
 
23
21
  ## Usage
24
22
 
25
- TODO: Write usage instructions here
23
+ First, execute analyze task in xcodebuild.
24
+ Example is below,
25
+
26
+ ```
27
+ xcodebuild -scheme "$XCODE_SCHEME" -workspace "$XCODE_WORKSPACE" -archivePath "$ARCHIVE_PATH" -derivedDataPath "$PWD/derivedData" analyze CODE_SIGN_IDENTITY="$DEVELOPER_NAME"
28
+ ```
29
+
30
+ After, you execute below, you can see checkstyle formatted result.
31
+
32
+ ```
33
+ ios_analytics translate --appName="SampleApp" --derivedData="$PWD/derivedData"
34
+ ```
26
35
 
27
36
  ## Development
28
37
 
@@ -33,4 +42,3 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
33
42
  ## Contributing
34
43
 
35
44
  Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/ios_analytics.
36
-
data/exe/ios_analytics CHANGED
File without changes
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
11
11
 
12
12
  spec.summary = 'Translate plist format into checkstyle format.'
13
13
  spec.description = 'Translate plist format into checkstyle format.'
14
- spec.homepage = 'https://github.com/noboru-i/findbugs_translate_checkstyle_format'
14
+ spec.homepage = 'https://github.com/noboru-i/ios_analytics'
15
15
  spec.license = 'MIT'
16
16
 
17
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
@@ -1,3 +1,3 @@
1
1
  module IosAnalytics
2
- VERSION = "0.0.4"
2
+ VERSION = '0.0.5'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ios_analytics
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - noboru-i
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-09-03 00:00:00.000000000 Z
11
+ date: 2015-12-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -116,7 +116,7 @@ files:
116
116
  - lib/ios_analytics/cli.rb
117
117
  - lib/ios_analytics/translate.rb
118
118
  - lib/ios_analytics/version.rb
119
- homepage: https://github.com/noboru-i/findbugs_translate_checkstyle_format
119
+ homepage: https://github.com/noboru-i/ios_analytics
120
120
  licenses:
121
121
  - MIT
122
122
  metadata: {}
@@ -136,7 +136,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
136
136
  version: '0'
137
137
  requirements: []
138
138
  rubyforge_project:
139
- rubygems_version: 2.4.5
139
+ rubygems_version: 2.4.5.1
140
140
  signing_key:
141
141
  specification_version: 4
142
142
  summary: Translate plist format into checkstyle format.