quir 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: 96875edb74765b8a065fb0e4b1591b7733eda524
4
+ data.tar.gz: dc576cba316d936b24231c88d1a7a739a775426a
5
+ SHA512:
6
+ metadata.gz: c2cba2e4e25bfc2dd602b069671591b411f02dad9e532fcb7cfa5b865a419b777ebd614d42f2b5b74fef935d1f838b83a6be499942aa70b46361084a96079622
7
+ data.tar.gz: 6ff7b479f9889eb7214027fdafc6fc01715dd31e8843209089b03197850e1c559098e0d1eb6671b2c3fe9fdc8ce06157d3697b155e185be10a5598a563eb5d04
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.3
4
+ before_install: gem install bundler -v 1.10.6
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in quir.gemspec
4
+ gemspec
data/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # Quir
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/quir`. 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 'quir'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install quir
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. Then, run `rake spec` to run the tests. 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]/quir.
36
+
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "quir"
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/lib/quir.rb ADDED
@@ -0,0 +1,14 @@
1
+ require "quir/version"
2
+
3
+ module Quir
4
+ autoload :Loader, 'quir/loader'
5
+ autoload :Inflection, 'quir/inflection'
6
+
7
+ def self.later(&block)
8
+ raise "No block given." unless block
9
+ mod = block.binding.eval('self')
10
+ dir = block.binding.eval('__FILE__').sub(/\.rb$/, '')
11
+ loader = Loader.new(mod, dir)
12
+ loader.run
13
+ end
14
+ end
@@ -0,0 +1,9 @@
1
+ module Quir
2
+ module Inflection
3
+ autoload :String, 'quir/inflection/string/pascalize'
4
+
5
+ refine ::String do
6
+ include String::Pascalize
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,5 @@
1
+ module Quir::Inflection
2
+ module String
3
+ autoload :Pascalize, 'quir/inflection/pascalize'
4
+ end
5
+ end
@@ -0,0 +1,7 @@
1
+ module Quir::Inflection::String
2
+ module Pascalize
3
+ def pascalize
4
+ split(/_/).map{|i| i[0].upcase + i[1..-1]}.join('')
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,39 @@
1
+ using Quir::Inflection
2
+
3
+ module Quir
4
+ class Loader
5
+ attr_reader :binding
6
+
7
+ def initialize(mod, dir)
8
+ @module = mod
9
+ @dir = dir
10
+ end
11
+
12
+ attr_reader :module, :dir
13
+
14
+ def run
15
+ ::Dir.glob("#{dir}/*") do |f|
16
+ if ::File.directory?(f)
17
+ append_directory f
18
+ elsif /\.rb$/ =~ f
19
+ append_ruby_file f
20
+ end
21
+ end
22
+ end
23
+
24
+ def append_directory(d)
25
+ return if ::File.exist?("#{dir}/#{d}.rb")
26
+ name = d.split(/\//)[-1].pascalize
27
+ m = ::Module.new
28
+ self.module.const_set name, m
29
+ m.name # fix module's name
30
+ loader = ::Quir::Loader.new(m, d)
31
+ loader.run
32
+ end
33
+
34
+ def append_ruby_file(f)
35
+ name = f.split(/\//)[-1].sub(/\.rb$/, '').pascalize
36
+ self.module.autoload name, f unless self.module.autoload?(name)
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,3 @@
1
+ module Quir
2
+ VERSION = "0.1.0"
3
+ end
data/quir.gemspec ADDED
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'quir/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "quir"
8
+ spec.version = Quir::VERSION
9
+ spec.authors = ["mosop"]
10
+ spec.email = ["mosop@a.b.com"]
11
+
12
+ spec.summary = %q{A library utilized for autoloading.}
13
+ spec.homepage = "https://github.com/mosop/quir"
14
+
15
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
16
+ spec.bindir = "exe"
17
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
18
+ spec.require_paths = ["lib"]
19
+
20
+ spec.add_development_dependency "bundler", "~> 1.10"
21
+ spec.add_development_dependency "rake", "~> 10.0"
22
+ spec.add_development_dependency "rspec"
23
+ end
metadata ADDED
@@ -0,0 +1,100 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: quir
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - mosop
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-11-21 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.10'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.10'
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
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description:
56
+ email:
57
+ - mosop@a.b.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".rspec"
64
+ - ".travis.yml"
65
+ - Gemfile
66
+ - README.md
67
+ - Rakefile
68
+ - bin/console
69
+ - bin/setup
70
+ - lib/quir.rb
71
+ - lib/quir/inflection.rb
72
+ - lib/quir/inflection/string.rb
73
+ - lib/quir/inflection/string/pascalize.rb
74
+ - lib/quir/loader.rb
75
+ - lib/quir/version.rb
76
+ - quir.gemspec
77
+ homepage: https://github.com/mosop/quir
78
+ licenses: []
79
+ metadata: {}
80
+ post_install_message:
81
+ rdoc_options: []
82
+ require_paths:
83
+ - lib
84
+ required_ruby_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ required_rubygems_version: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ requirements: []
95
+ rubyforge_project:
96
+ rubygems_version: 2.4.5.1
97
+ signing_key:
98
+ specification_version: 4
99
+ summary: A library utilized for autoloading.
100
+ test_files: []