xib_image_validator 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: c05a5676e2d5c7bc90efd6b2533430d430fb0c13
4
+ data.tar.gz: de9cca400c253deb456c164de283bd030fb216d7
5
+ SHA512:
6
+ metadata.gz: d96b489c5cecbb4f30d714fde8a25783eff4cc94f646b284c3f5ba38a50d776ab5eb52978edbe11785644847d5b36faf6bebba74d505664baddcc6cf42476b8b
7
+ data.tar.gz: a3f79b917ca30a48c7f41813cb12050e5bd7133933bacc4a091ec1079a852a94366ff9fe7f58e7d2ee121b608a2909222c991df4a798e144c9fcfa0b471d0b20
data/.gitignore ADDED
@@ -0,0 +1,50 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /spec/examples.txt
9
+ /test/tmp/
10
+ /test/version_tmp/
11
+ /tmp/
12
+
13
+ # Used by dotenv library to load environment variables.
14
+ # .env
15
+
16
+ ## Specific to RubyMotion:
17
+ .dat*
18
+ .repl_history
19
+ build/
20
+ *.bridgesupport
21
+ build-iPhoneOS/
22
+ build-iPhoneSimulator/
23
+
24
+ ## Specific to RubyMotion (use of CocoaPods):
25
+ #
26
+ # We recommend against adding the Pods directory to your .gitignore. However
27
+ # you should judge for yourself, the pros and cons are mentioned at:
28
+ # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
29
+ #
30
+ # vendor/Pods/
31
+
32
+ ## Documentation cache and generated files:
33
+ /.yardoc/
34
+ /_yardoc/
35
+ /doc/
36
+ /rdoc/
37
+
38
+ ## Environment normalization:
39
+ /.bundle/
40
+ /vendor/bundle
41
+ /lib/bundler/man/
42
+
43
+ # for a library or gem, you might want to ignore these files since the code is
44
+ # intended to run in multiple environments; otherwise, check them in:
45
+ # Gemfile.lock
46
+ # .ruby-version
47
+ # .ruby-gemset
48
+
49
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
50
+ .rvmrc
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in xib_image_validator.gemspec
4
+ gemspec
5
+ gem 'xib_image_validator', :path => '.'
data/Gemfile.lock ADDED
@@ -0,0 +1,20 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ xib_image_validator (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ rake (10.5.0)
10
+
11
+ PLATFORMS
12
+ ruby
13
+
14
+ DEPENDENCIES
15
+ bundler (~> 1.12)
16
+ rake (~> 10.0)
17
+ xib_image_validator!
18
+
19
+ BUNDLED WITH
20
+ 1.12.5
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Igor Makarov
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,41 @@
1
+ # XibImageValidator
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/xib_image_validator`. 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
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'xib_image_validator'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install xib_image_validator
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/xib_image_validator.
36
+
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
41
+
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
data/bin/validate_xib ADDED
@@ -0,0 +1,22 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'xib_image_validator'
4
+
5
+ require 'optparse'
6
+
7
+ # This will hold the options we parse
8
+ options = {}
9
+
10
+ OptionParser.new do |parser|
11
+ parser.banner = "Usage: validate_xib [dirname] [options]"
12
+ parser.on("-v", "--verbose", TrueClass, "Output diagnosic info.") do |v|
13
+ options[:verbose] = true
14
+ end
15
+ parser.on("-h", "--help", "Show this help message") do ||
16
+ puts parser
17
+ end
18
+ end.parse!
19
+
20
+ options[:dirname] = ARGV[0] || Dir.pwd
21
+
22
+ XIBImageValidator.validate_directory(options)
@@ -0,0 +1,3 @@
1
+ module XibImageValidator
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,37 @@
1
+ require "rexml/document"
2
+
3
+ class XIBImageValidator
4
+ def self.validate_directory(options)
5
+ dirname = options[:dirname]
6
+ verbose = options[:verbose]
7
+ STDERR.puts "Scanning #{dirname}" if verbose
8
+ images = Set.new
9
+ images.merge Set.new Dir["#{dirname}/**/*.png"] { |f| strip_image_name(f) }
10
+ images.merge Set.new Dir["#{dirname}/**/*.pdf"] { |f| strip_image_name(f) }
11
+ STDERR.puts "Found #{images.count} distinct images in directory" if verbose
12
+
13
+ Dir["#{dirname}/**/*.xib"].each do |filename|
14
+ xml = REXML::Document.new File.new(filename)
15
+ xml.elements.each("//image | //state | //imageView") do |elem|
16
+ if(elem.name == "image")
17
+ image = elem.attributes["name"]
18
+ elsif (elem.name == "state" || elem.name == "imageView")
19
+ image = elem.attributes["image"]
20
+ end
21
+
22
+ if(image)
23
+ imageTrimmed = strip_image_name(image)
24
+ STDERR.puts "#{imageTrimmed} (<#{elem.name}/>) in #{File.basename(filename)}" if verbose
25
+ if(!(images.include? imageTrimmed))
26
+ STDERR.puts "The image reference \"#{image}\" does not have corresponding image" if verbose
27
+ puts image
28
+ end
29
+ end
30
+ end
31
+ end
32
+ end
33
+ end
34
+
35
+ def strip_image_name(imageName)
36
+ File.basename(imageName).sub(/(\@[0-9]x)?\..*/, "")
37
+ end
@@ -0,0 +1,24 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'xib_image_validator/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "xib_image_validator"
8
+ spec.version = XibImageValidator::VERSION
9
+ spec.authors = ["Igor Makarov"]
10
+ spec.email = ["igormaka@gmail.com"]
11
+
12
+ spec.summary = "XIB Image Validator"
13
+ spec.description = "A gem that ensures you have the proper image files that you've referenced in your XIBs."
14
+ spec.homepage = "https://github.com/igor-makarov/xib-image-validator"
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 = "bin"
19
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_development_dependency "bundler", "~> 1.12"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ end
metadata ADDED
@@ -0,0 +1,85 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: xib_image_validator
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Igor Makarov
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-08-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.12'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.12'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: A gem that ensures you have the proper image files that you've referenced
42
+ in your XIBs.
43
+ email:
44
+ - igormaka@gmail.com
45
+ executables:
46
+ - validate_xib
47
+ extensions: []
48
+ extra_rdoc_files: []
49
+ files:
50
+ - .gitignore
51
+ - Gemfile
52
+ - Gemfile.lock
53
+ - LICENSE.txt
54
+ - README.md
55
+ - Rakefile
56
+ - bin/validate_xib
57
+ - lib/xib_image_validator.rb
58
+ - lib/xib_image_validator/version.rb
59
+ - xib_image_validator.gemspec
60
+ homepage: https://github.com/igor-makarov/xib-image-validator
61
+ licenses:
62
+ - MIT
63
+ metadata: {}
64
+ post_install_message:
65
+ rdoc_options: []
66
+ require_paths:
67
+ - lib
68
+ required_ruby_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - '>='
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
73
+ required_rubygems_version: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ requirements: []
79
+ rubyforge_project:
80
+ rubygems_version: 2.4.8
81
+ signing_key:
82
+ specification_version: 4
83
+ summary: XIB Image Validator
84
+ test_files: []
85
+ has_rdoc: