ExtractingIdFromStoryboard 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 8e6ac4f9cd0a1c199b1127a69ac886e8eac056b4
4
+ data.tar.gz: c202d8636d0bba7fb1130aae3461535b1ffaf1de
5
+ SHA512:
6
+ metadata.gz: b19aec62b75bde1237aa493b1c137233ebbbf36ae0789bd61917b2eb2425b730c9f9e7af454b1eb161ab354e894fe19f904fdc97c35fe0ba57e597b08ac6d3ed
7
+ data.tar.gz: ef761173cad0918ae96852baa65ab6eb9802775a29f4286f96a54eb13cc54bf9e6831a18af9b40c42d656edd39b7ec5df1ef27cdcf925f3f4fffc5e1279af25c
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ .DS_Store
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.0.0
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'extracting_id/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "ExtractingIdFromStoryboard"
8
+ spec.version = ExtractingId::VERSION
9
+ spec.authors = ["akuraru"]
10
+ spec.email = ["akuraru@gmail.com"]
11
+
12
+ spec.summary = %q{this tool for extracting ids from Storyboard}
13
+ spec.description = %q{this tool for extracting ids from Storyboard. Were extracted by specifying the Storyboard, it will be defined together in Header file}
14
+ spec.homepage = "https://github.com/akuraru/ExtractingIdFromStoryboard"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_runtime_dependency "thor", "~> 0.18.1"
23
+ spec.add_development_dependency "bundler", "~> 1.9"
24
+ spec.add_development_dependency "rake", "~> 10.0"
25
+ end
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in udcreater.gemspec
4
+ gemspec
5
+ gem "rspec", "~> 2.14.1"
6
+ gem "thor", "~> 0.18.1"
7
+ gem 'guard-rspec'
data/Guardfile ADDED
@@ -0,0 +1,8 @@
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+ guard :rspec, cmd: "bundle exec rspec" do
5
+ watch(%r{^spec/.+_spec\.rb$})
6
+ watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
7
+ watch('spec/spec_helper.rb') { "spec" }
8
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 akuraru
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,7 @@
1
+ ExtractingIdFromStoryboard
2
+ ==========================
3
+
4
+ This is a tool to extract restorationIdentifier of view and identifitier of Segue, the storyboardIdentifier of viewController from Storyboard and to define.
5
+ By specifying the following, you will be able to extract.
6
+
7
+ > ruby extractingId.rb "StoryboardIsExtracted " "DirectoryOfDestination"
data/README_JP.md ADDED
@@ -0,0 +1,8 @@
1
+ ExtractingIdFromStoryboard
2
+ ==========================
3
+
4
+ これは、StoryboardからSegueのidentifitierとviewのrestorationIdentifier、viewControllerのstoryboardIdentifierを抽出してdefineするためのツールです。
5
+ 以下のように指定することによって、抽出することができます。
6
+
7
+ > ruby extractingId.rb ”抽出されるStoryboard" ”出力先のディレクトリ"
8
+
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "ExtractingIdFromStoryboard"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
data/exe/extracting_id ADDED
@@ -0,0 +1,27 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "extracting_id/version"
4
+ require "extracting_id"
5
+ require "thor"
6
+
7
+ module ExtractingId
8
+ #= ExtractingId CLI
9
+ class CLI < Thor
10
+ default_task :create
11
+
12
+ option :storyboard, :type => :string, :aliases => '-s', :required => true, :desc => 'input file'
13
+ option :output, :type => :string, :aliases => '-o', :default => "./", :desc => 'output directory'
14
+ option :file_name, :type => :string, :aliases => '-f', :default => "ExtactedID", :desc => 'output file name'
15
+ desc "create", "create UserDefaults wrapper"
16
+ def create
17
+ Core.new.main(options[:storyboard], options[:output], options[:file_name])
18
+ end
19
+
20
+ desc "version", "version"
21
+ def version
22
+ p VERSION
23
+ end
24
+ end
25
+ end
26
+
27
+ ExtractingId::CLI.start(ARGV)
data/file/ExtactedID.h ADDED
@@ -0,0 +1,4 @@
1
+ #define kStoryboardHogeMoge @"HogeMoge"
2
+ #define kRestoreCell @"Cell"
3
+ #define kSegueEdit @"Edit"
4
+ #define kSegueBack @"Back"
@@ -0,0 +1,142 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="6751" systemVersion="14C1514" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" promptedForUpgradeToXcode5="NO" initialViewController="OMR-1h-rAY">
3
+ <dependencies>
4
+ <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="6736"/>
5
+ </dependencies>
6
+ <scenes>
7
+ <!--Navigation Controller-->
8
+ <scene sceneID="Udc-NX-7kc">
9
+ <objects>
10
+ <navigationController definesPresentationContext="YES" id="OMR-1h-rAY" sceneMemberID="viewController">
11
+ <navigationBar key="navigationBar" contentMode="scaleToFill" id="Sn0-OZ-eTl">
12
+ <autoresizingMask key="autoresizingMask"/>
13
+ </navigationBar>
14
+ <connections>
15
+ <segue destination="GE5-ew-lDV" kind="relationship" relationship="rootViewController" id="hIp-wx-nzR"/>
16
+ </connections>
17
+ </navigationController>
18
+ <placeholder placeholderIdentifier="IBFirstResponder" id="8MH-fq-IGw" userLabel="First Responder" sceneMemberID="firstResponder"/>
19
+ </objects>
20
+ <point key="canvasLocation" x="-609" y="-106"/>
21
+ </scene>
22
+ <!--View Controller-->
23
+ <scene sceneID="TSB-qP-fwb">
24
+ <objects>
25
+ <tableViewController storyboardIdentifier="HogeMoge" useStoryboardIdentifierAsRestorationIdentifier="YES" id="GE5-ew-lDV" customClass="ViewController" sceneMemberID="viewController">
26
+ <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="22" sectionFooterHeight="22" id="Im8-iF-rcS">
27
+ <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
28
+ <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
29
+ <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
30
+ <prototypes>
31
+ <tableViewCell contentMode="scaleToFill" restorationIdentifier="Cell" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="lAO-69-cmR">
32
+ <rect key="frame" x="0.0" y="22" width="320" height="44"/>
33
+ <autoresizingMask key="autoresizingMask"/>
34
+ <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="lAO-69-cmR" id="SS3-eR-yBX">
35
+ <rect key="frame" x="0.0" y="0.0" width="320" height="43"/>
36
+ <autoresizingMask key="autoresizingMask"/>
37
+ </tableViewCellContentView>
38
+ </tableViewCell>
39
+ </prototypes>
40
+ <connections>
41
+ <outlet property="dataSource" destination="GE5-ew-lDV" id="SLv-ph-37A"/>
42
+ <outlet property="delegate" destination="GE5-ew-lDV" id="UOm-es-TJd"/>
43
+ </connections>
44
+ </tableView>
45
+ <navigationItem key="navigationItem" id="5nL-xb-0cF">
46
+ <barButtonItem key="rightBarButtonItem" style="plain" id="Mdn-RN-b0h">
47
+ <button key="customView" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" id="269-vo-efg">
48
+ <rect key="frame" x="244" y="0.0" width="71" height="44"/>
49
+ <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
50
+ <fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
51
+ <state key="normal" title="新規">
52
+ <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
53
+ </state>
54
+ <connections>
55
+ <action selector="touchNew:" destination="GE5-ew-lDV" eventType="touchUpInside" id="VYB-f4-M26"/>
56
+ </connections>
57
+ </button>
58
+ <connections>
59
+ <action selector="hoge:" destination="GE5-ew-lDV" id="4kf-98-8yH"/>
60
+ </connections>
61
+ </barButtonItem>
62
+ </navigationItem>
63
+ <connections>
64
+ <segue destination="6nM-PU-C5U" kind="push" identifier="Edit" id="4sO-RP-gmD"/>
65
+ </connections>
66
+ </tableViewController>
67
+ <placeholder placeholderIdentifier="IBFirstResponder" id="rFS-ln-205" userLabel="First Responder" sceneMemberID="firstResponder"/>
68
+ <exit id="lml-nA-oku" userLabel="Exit" sceneMemberID="exit"/>
69
+ </objects>
70
+ <point key="canvasLocation" x="-144" y="-106"/>
71
+ </scene>
72
+ <!--View Controller-->
73
+ <scene sceneID="1K8-mC-arw">
74
+ <objects>
75
+ <viewController id="MWy-u0-GI4" sceneMemberID="viewController">
76
+ <view key="view" contentMode="scaleToFill" id="Qav-bI-y4A">
77
+ <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
78
+ <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
79
+ <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
80
+ </view>
81
+ <navigationItem key="navigationItem" id="5MC-Lh-TH7"/>
82
+ </viewController>
83
+ <placeholder placeholderIdentifier="IBFirstResponder" id="8VU-He-uKC" userLabel="First Responder" sceneMemberID="firstResponder"/>
84
+ </objects>
85
+ <point key="canvasLocation" x="678" y="-106"/>
86
+ </scene>
87
+ <!--Second View Controller-->
88
+ <scene sceneID="2AE-Vn-kkf">
89
+ <objects>
90
+ <viewController id="6nM-PU-C5U" customClass="SecondViewController" sceneMemberID="viewController">
91
+ <view key="view" contentMode="scaleToFill" id="rDv-jY-X6e">
92
+ <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
93
+ <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
94
+ <subviews>
95
+ <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" minimumFontSize="17" id="8P7-c6-Rcs">
96
+ <rect key="frame" x="20" y="20" width="206" height="30"/>
97
+ <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
98
+ <fontDescription key="fontDescription" type="system" pointSize="14"/>
99
+ <textInputTraits key="textInputTraits"/>
100
+ <userDefinedRuntimeAttributes>
101
+ <userDefinedRuntimeAttribute type="color" keyPath="backgroundColor">
102
+ <color key="value" red="0.0" green="0.0" blue="1" alpha="1" colorSpace="calibratedRGB"/>
103
+ </userDefinedRuntimeAttribute>
104
+ </userDefinedRuntimeAttributes>
105
+ </textField>
106
+ <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" id="Qla-7y-MRi">
107
+ <rect key="frame" x="243" y="13" width="55" height="44"/>
108
+ <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
109
+ <fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
110
+ <state key="normal" title="保存">
111
+ <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
112
+ </state>
113
+ <connections>
114
+ <action selector="save:" destination="6nM-PU-C5U" eventType="touchUpInside" id="6o6-6j-szP"/>
115
+ </connections>
116
+ </button>
117
+ <view contentMode="scaleToFill" id="5z1-lQ-jn0">
118
+ <rect key="frame" x="104" y="98" width="160" height="252"/>
119
+ <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
120
+ <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
121
+ </view>
122
+ </subviews>
123
+ <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
124
+ </view>
125
+ <navigationItem key="navigationItem" id="eF0-JH-JQj"/>
126
+ <connections>
127
+ <outlet property="context" destination="8P7-c6-Rcs" id="kAl-0m-pTY"/>
128
+ <segue destination="lml-nA-oku" kind="unwind" identifier="Back" unwindAction="back:" id="y6z-aW-DdK"/>
129
+ <segue destination="MWy-u0-GI4" kind="push" identifier="Edit" id="phF-bb-n3f"/>
130
+ </connections>
131
+ </viewController>
132
+ <placeholder placeholderIdentifier="IBFirstResponder" id="6OJ-ug-DiY" userLabel="First Responder" sceneMemberID="firstResponder"/>
133
+ </objects>
134
+ <point key="canvasLocation" x="259" y="-106"/>
135
+ </scene>
136
+ </scenes>
137
+ <simulatedMetricsContainer key="defaultSimulatedMetrics">
138
+ <simulatedStatusBarMetrics key="statusBar"/>
139
+ <simulatedOrientationMetrics key="orientation"/>
140
+ <simulatedScreenMetrics key="destination" type="retina4"/>
141
+ </simulatedMetricsContainer>
142
+ </document>
@@ -0,0 +1,103 @@
1
+ require 'extracting_id/version'
2
+
3
+
4
+ module ExtractingId
5
+ class Core
6
+ def initialize
7
+ end
8
+ def main(storyboardFile, output_dir, fileName = "ExtactedID")
9
+ readFile = self.fileRead(storyboardFile)
10
+ arrayString = scan(readFile)
11
+ arrType = self.exchange(arrayString)
12
+ header = self.header(arrType, fileName)
13
+ fileWrite(output_dir)
14
+ end
15
+
16
+ def fileRead(fileName)
17
+ File.open(fileName, :mode => "rb", :encoding => "UTF-8").read
18
+ end
19
+ def scan(readFile)
20
+ readFile.scan(/(.*)\n/).flatten
21
+ end
22
+ def exchange(arrStr)
23
+ arrStr.map{|s| to_class(s) }.flatten.inject([]){|a, s|
24
+ if a.index(s) == nil then
25
+ a.push(s)
26
+ end
27
+ a
28
+ }
29
+ end
30
+ def to_class(s)
31
+ if / identifier="(\w+)" / =~ s then
32
+ [Segue.new($1)]
33
+ elsif / restorationIdentifier="(\w+)" / =~ s then
34
+ [Restore.new($1)]
35
+ elsif /storyboardIdentifier="(\w+)"/ =~ s then
36
+ [Storyboard.new($1)]
37
+ else
38
+ []
39
+ end
40
+ end
41
+ def header(arrType, fileName)
42
+ self.define(arrType)
43
+ end
44
+ def define(arrType)
45
+ arrType.map{|s| s.impDefine}.inject(""){|s, i| s + i}
46
+ end
47
+ def fileWrite(output_dir)
48
+ head = "#{output_dir}#{fileName}.h"
49
+ FileUtils.mkdir_p(output_dir) unless FileTest.exist?(output_dir)
50
+ File.open(head, "w:UTF-8"){|f|
51
+ f.write header
52
+ }
53
+ end
54
+ end
55
+ class Type
56
+ def initialize(name)
57
+ @name = name
58
+ end
59
+ def == (type)
60
+ @name == type.name
61
+ end
62
+ def name
63
+ @name
64
+ end
65
+ def capitalize
66
+ c = @name
67
+ c[0,1].capitalize + c[1..-1]
68
+ end
69
+ def define
70
+ "k" + self.class_name + self.capitalize
71
+ end
72
+ def nsString
73
+ '@"' + @name + '"'
74
+ end
75
+ def impDefine
76
+ "\#define #{self.define} #{self.nsString}\n"
77
+ end
78
+ end
79
+ class Segue < Type
80
+ def class_name
81
+ "Segue"
82
+ end
83
+ def == (type)
84
+ Segue === type && super(type)
85
+ end
86
+ end
87
+ class Restore < Type
88
+ def class_name
89
+ "Restore"
90
+ end
91
+ def == (type)
92
+ Restore === type && super(type)
93
+ end
94
+ end
95
+ class Storyboard < Type
96
+ def class_name
97
+ "Storyboard"
98
+ end
99
+ def == (type)
100
+ Storyboard === type && super(type)
101
+ end
102
+ end
103
+ end
@@ -0,0 +1,3 @@
1
+ module ExtractingId
2
+ VERSION = "0.1.0"
3
+ end
metadata ADDED
@@ -0,0 +1,106 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ExtractingIdFromStoryboard
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - akuraru
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-04-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: thor
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 0.18.1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 0.18.1
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '1.9'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '1.9'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ description: this tool for extracting ids from Storyboard. Were extracted by specifying
56
+ the Storyboard, it will be defined together in Header file
57
+ email:
58
+ - akuraru@gmail.com
59
+ executables:
60
+ - extracting_id
61
+ extensions: []
62
+ extra_rdoc_files: []
63
+ files:
64
+ - .gitignore
65
+ - .rspec
66
+ - .travis.yml
67
+ - CODE_OF_CONDUCT.md
68
+ - ExtractingIdFromStoryboard.gemspec
69
+ - Gemfile
70
+ - Guardfile
71
+ - LICENSE.txt
72
+ - README.md
73
+ - README_JP.md
74
+ - Rakefile
75
+ - bin/console
76
+ - bin/setup
77
+ - exe/extracting_id
78
+ - file/ExtactedID.h
79
+ - file/TestStoryboard.storyboard
80
+ - lib/extracting_id.rb
81
+ - lib/extracting_id/version.rb
82
+ homepage: https://github.com/akuraru/ExtractingIdFromStoryboard
83
+ licenses:
84
+ - MIT
85
+ metadata: {}
86
+ post_install_message:
87
+ rdoc_options: []
88
+ require_paths:
89
+ - lib
90
+ required_ruby_version: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - '>='
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ required_rubygems_version: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - '>='
98
+ - !ruby/object:Gem::Version
99
+ version: '0'
100
+ requirements: []
101
+ rubyforge_project:
102
+ rubygems_version: 2.4.5
103
+ signing_key:
104
+ specification_version: 4
105
+ summary: this tool for extracting ids from Storyboard
106
+ test_files: []