quir 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +4 -0
- data/Gemfile +4 -0
- data/README.md +36 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lib/quir.rb +14 -0
- data/lib/quir/inflection.rb +9 -0
- data/lib/quir/inflection/string.rb +5 -0
- data/lib/quir/inflection/string/pascalize.rb +7 -0
- data/lib/quir/loader.rb +39 -0
- data/lib/quir/version.rb +3 -0
- data/quir.gemspec +23 -0
- metadata +100 -0
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
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
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
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
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
|
data/lib/quir/loader.rb
ADDED
@@ -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
|
data/lib/quir/version.rb
ADDED
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: []
|