yapfac 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 +15 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +4 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +76 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/quicktest +16 -0
- data/bin/setup +7 -0
- data/lib/yapfac/apache/directive.rb +42 -0
- data/lib/yapfac/apache/scope.rb +64 -0
- data/lib/yapfac/apache/site.rb +50 -0
- data/lib/yapfac/apache.rb +24 -0
- data/lib/yapfac/version.rb +3 -0
- data/lib/yapfac.rb +28 -0
- data/yapfac.gemspec +25 -0
- metadata +105 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
!binary "U0hBMQ==":
|
|
3
|
+
metadata.gz: !binary |-
|
|
4
|
+
ZGE0MDA3MjA1NDQ5NTgxZWM3NGNlYTczZWU2ZTYxZWY2MDk0OTQxYw==
|
|
5
|
+
data.tar.gz: !binary |-
|
|
6
|
+
ODZkYjRjMjliNWUwODkwNmNhYTExOTg2NTA2MWQ2YzlmZTY1ZGZlZQ==
|
|
7
|
+
SHA512:
|
|
8
|
+
metadata.gz: !binary |-
|
|
9
|
+
Nzk3NTU1OGQwZjA4MjNlODZkMTBjY2Q2YjNiNWYyMTIyNDU5MmJjYzQ4OTZk
|
|
10
|
+
YzI2Njk3ZmZjN2ZjOGNiMTUyNjM2OWI4ZjI5YTM1ZjRkMDA1ZTY3NzVkNDFh
|
|
11
|
+
YTkwMGI3ZDRjOGIyYmQxZjExYjg2YTdkYzU3M2VlZTI5NzdlYTI=
|
|
12
|
+
data.tar.gz: !binary |-
|
|
13
|
+
ODZlYmE4YTkzMmY5NzAyYzEzNTkwNDUwODY1YzM1MTgyYWYxYzcwMjU1MTRj
|
|
14
|
+
NmU3ODU3ZTU5MjQ2YmYzNWYyNWJmYWU2MWNjMDJlZDc0OGI3NWY4YjI0OTE0
|
|
15
|
+
ZDI5MTBmZGZhN2Y4NDdjOTE2MzRiNjE5YjgyNDc2NDBhYjI5NDY=
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
|
@@ -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, ethnicity, 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/)
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2015 TODO: Write your name
|
|
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,76 @@
|
|
|
1
|
+
# YAPFAC: Yet Another Parser for Apache Configuration
|
|
2
|
+
|
|
3
|
+
YAPFAC provides a parser to read and write Apache configuration files. YAPFAC also provides a secure RESTful API for doing this remotely, providing seamless controll of a number of Apache servers.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Add this line to your application's Gemfile:
|
|
8
|
+
|
|
9
|
+
```ruby
|
|
10
|
+
gem 'yapfac', git: 'eiwi1101/yapfac'
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
And then execute:
|
|
14
|
+
|
|
15
|
+
$ bundle
|
|
16
|
+
|
|
17
|
+
Or install it yourself as:
|
|
18
|
+
|
|
19
|
+
$ gem install yapfac
|
|
20
|
+
|
|
21
|
+
## Configuration
|
|
22
|
+
|
|
23
|
+
Before using Yapfac, configure the gem in an initializer or some other useful place. The following are the default configuration options.
|
|
24
|
+
|
|
25
|
+
```ruby
|
|
26
|
+
Yapfac.configure do |config|
|
|
27
|
+
|
|
28
|
+
# Apache Default Options
|
|
29
|
+
config.apache_path = "/etc/apache2"
|
|
30
|
+
config.sites_available_path = "sites-available"
|
|
31
|
+
config.sites_enabled_path = "sites-enabled"
|
|
32
|
+
|
|
33
|
+
end
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Usage
|
|
37
|
+
|
|
38
|
+
```ruby
|
|
39
|
+
default = Yapfac::Apache::Site.new("/etc/apache2/sites-available/000-default.conf")
|
|
40
|
+
puts default.to_s #=> Converts the config back into Apache Config format.
|
|
41
|
+
puts default.to_h #=> Converts the config into a hash.
|
|
42
|
+
|
|
43
|
+
sites = Yapfac::Apache.sites_available
|
|
44
|
+
puts sites.first.to_s #=> Dumps the configuration file for the first site in sites-available
|
|
45
|
+
|
|
46
|
+
online = Yapfac::Apache.sites_enabled #=> Just reads the sites-enabled dir.
|
|
47
|
+
|
|
48
|
+
### COMING SOON
|
|
49
|
+
|
|
50
|
+
Yapfac::Apache.a2ensite "example.com.conf" #=> Enables site
|
|
51
|
+
Yapfac::Apache.a2dissite "000-default.conf" #=> Disables site
|
|
52
|
+
|
|
53
|
+
# Self-explanatory
|
|
54
|
+
Yapfac::Apache.reload
|
|
55
|
+
Yapfac::Apache.restart
|
|
56
|
+
|
|
57
|
+
Yapfac::Apache.a2ensite! "example.com.conf" #=> Enables site and reloads Apache. Same for ::a2dissite.
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
## Development
|
|
61
|
+
|
|
62
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake rspec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
63
|
+
|
|
64
|
+
For ease in testing, you can modify `bin/quicktest` to run through some real-world scenarios. (Currently, `bin/quicktest` requires apache2 to be installed.
|
|
65
|
+
|
|
66
|
+
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).
|
|
67
|
+
|
|
68
|
+
## Contributing
|
|
69
|
+
|
|
70
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/eiwi1101/yapfac. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
## License
|
|
74
|
+
|
|
75
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
|
76
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require "bundler/setup"
|
|
4
|
+
require "yapfac"
|
|
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/quicktest
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
#!/usr/bin/ruby
|
|
2
|
+
$: << 'lib'
|
|
3
|
+
|
|
4
|
+
require 'yapfac'
|
|
5
|
+
require 'json'
|
|
6
|
+
|
|
7
|
+
Yapfac::Apache.sites_available.each do |site|
|
|
8
|
+
v = Yapfac::Apache::Site.new(site)
|
|
9
|
+
|
|
10
|
+
puts "=" * 80
|
|
11
|
+
puts v.name
|
|
12
|
+
puts "-" * 80
|
|
13
|
+
puts v.to_s
|
|
14
|
+
puts "-" * 80
|
|
15
|
+
puts JSON.pretty_generate v.to_h
|
|
16
|
+
end
|
data/bin/setup
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
module Yapfac
|
|
2
|
+
class Apache
|
|
3
|
+
class Directive
|
|
4
|
+
|
|
5
|
+
attr_accessor :name, :params
|
|
6
|
+
|
|
7
|
+
def initialize(name, params = nil)
|
|
8
|
+
@name = name
|
|
9
|
+
@params = parse(params)
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
def to_s
|
|
13
|
+
"#{@name} #{@params.collect do |p|
|
|
14
|
+
if p =~ /\s/
|
|
15
|
+
"\"#{p}\""
|
|
16
|
+
else
|
|
17
|
+
p
|
|
18
|
+
end
|
|
19
|
+
end.join(' ')}"
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def to_h
|
|
23
|
+
return ({
|
|
24
|
+
name: @name,
|
|
25
|
+
params: @params
|
|
26
|
+
})
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
private
|
|
30
|
+
|
|
31
|
+
def parse(params)
|
|
32
|
+
return Array.new if params.nil?
|
|
33
|
+
|
|
34
|
+
return params.
|
|
35
|
+
split(/\s(?=(?:[^'"]|'[^']*'|"[^"]*")*$)/).
|
|
36
|
+
select { |s| not s.empty? }.
|
|
37
|
+
map { |s| s.gsub(/(^\s+)|(\s+$)|(^["']+)|(["']+$)/, '') }
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
end
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
module Yapfac
|
|
2
|
+
class Apache
|
|
3
|
+
class Scope
|
|
4
|
+
|
|
5
|
+
attr_reader :name, :params, :parent
|
|
6
|
+
|
|
7
|
+
def initialize(name = nil, params = nil, parent = nil)
|
|
8
|
+
@name = name
|
|
9
|
+
@params = params.nil? ? Array.new : params.split(/\s+/)
|
|
10
|
+
@parent = parent
|
|
11
|
+
|
|
12
|
+
@directives = Array.new
|
|
13
|
+
@scopes = Array.new
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def add_directive(line)
|
|
17
|
+
@directives.push(line)
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def add_scope(scope)
|
|
21
|
+
if scope == self
|
|
22
|
+
raise "Scope can not be a child of itsself."
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
@scopes.push(scope)
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def to_h
|
|
29
|
+
return({
|
|
30
|
+
name: @name,
|
|
31
|
+
params: @params,
|
|
32
|
+
directives: @directives.collect(&:to_h),
|
|
33
|
+
scopes: @scopes.collect(&:to_h)
|
|
34
|
+
})
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
def to_s
|
|
38
|
+
# TODO: Figure out a cleaner indentation method.
|
|
39
|
+
|
|
40
|
+
out = Array.new
|
|
41
|
+
tab = @parent.nil? ? "" : "\t"
|
|
42
|
+
|
|
43
|
+
unless parent.nil?
|
|
44
|
+
out << "<#{@name} #{@params.join(' ')}>"
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
unless @directives.empty?
|
|
48
|
+
out << @directives.collect { |d| d.to_s.prepend(tab) }
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
unless @scopes.empty?
|
|
52
|
+
out << @scopes.collect { |s| s.to_s.split("\n").collect { |v| v.prepend(tab) }.join("\n") }
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
unless parent.nil?
|
|
56
|
+
out << "</#{@name}>"
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
return out.join("\n")
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
end
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
module Yapfac
|
|
2
|
+
class Apache
|
|
3
|
+
class Site < Scope
|
|
4
|
+
|
|
5
|
+
def initialize(filename)
|
|
6
|
+
super()
|
|
7
|
+
@name = File.basename(filename, '.conf')
|
|
8
|
+
@config_lines = read_file(filename)
|
|
9
|
+
parse!
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
private
|
|
13
|
+
|
|
14
|
+
def read_file(filename)
|
|
15
|
+
lines = File.read(filename)
|
|
16
|
+
lines.gsub!("\\\n", '')
|
|
17
|
+
|
|
18
|
+
lines_a = lines.split("\n").map(&:strip!)
|
|
19
|
+
lines_a.reject! { |l| l =~ /^\s*(?:#.*)?$/ }
|
|
20
|
+
lines_a.reject! &:nil?
|
|
21
|
+
lines_a.map { |l| l.gsub! /\s+/, ' ' }
|
|
22
|
+
|
|
23
|
+
return lines_a
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def parse!
|
|
27
|
+
scope = self
|
|
28
|
+
|
|
29
|
+
@config_lines.each do |line|
|
|
30
|
+
# Enter Child Scope
|
|
31
|
+
if line =~ /^<(\w+)\s*(.*)?>$/
|
|
32
|
+
new_scope = Yapfac::Apache::Scope.new($1, $2, scope)
|
|
33
|
+
scope.add_scope(new_scope)
|
|
34
|
+
scope = new_scope
|
|
35
|
+
|
|
36
|
+
# Exit Child Scope
|
|
37
|
+
elsif line =~ /^<\/#{scope.name}>$/
|
|
38
|
+
scope = scope.parent
|
|
39
|
+
|
|
40
|
+
# Add Directive
|
|
41
|
+
elsif line =~ /^(\w+)\s*(.*)$/
|
|
42
|
+
directive = Yapfac::Apache::Directive.new($1, $2)
|
|
43
|
+
scope.add_directive(directive)
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
end
|
|
49
|
+
end
|
|
50
|
+
end
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Load Apache deps
|
|
2
|
+
require 'yapfac/apache/directive'
|
|
3
|
+
require 'yapfac/apache/scope'
|
|
4
|
+
require 'yapfac/apache/site'
|
|
5
|
+
#require 'yapfac/apache/directive'
|
|
6
|
+
|
|
7
|
+
# Autoload Directives
|
|
8
|
+
|
|
9
|
+
module Yapfac
|
|
10
|
+
class Apache
|
|
11
|
+
|
|
12
|
+
def initialize
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def self.sites_available
|
|
16
|
+
Dir[File.join(Yapfac.configuration.apache_path, Yapfac.configuration.sites_available_path, '*.conf')]
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def self.sites_enabled
|
|
20
|
+
Dir[File.join(Yapfac.configuration.apache_path, Yapfac.configuration.sites_enabled_path, '*.conf')]
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
end
|
|
24
|
+
end
|
data/lib/yapfac.rb
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
require "yapfac/version"
|
|
2
|
+
require "yapfac/apache"
|
|
3
|
+
|
|
4
|
+
module Yapfac
|
|
5
|
+
def self.configuration
|
|
6
|
+
@configuration ||= Configuration.new
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
def self.configuration=(configuration)
|
|
10
|
+
@configuration = configuration
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def self.configure
|
|
14
|
+
yield configuration
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
class Configuration
|
|
18
|
+
attr_accessor :apache_path
|
|
19
|
+
attr_accessor :sites_available_path
|
|
20
|
+
attr_accessor :sites_enabled_path
|
|
21
|
+
|
|
22
|
+
def initialize
|
|
23
|
+
@apache_path = "/etc/apache2"
|
|
24
|
+
@sites_available_path = "sites-available"
|
|
25
|
+
@sites_enabled_path = "sites-enabled"
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
data/yapfac.gemspec
ADDED
|
@@ -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 'yapfac/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = "yapfac"
|
|
8
|
+
spec.version = Yapfac::VERSION
|
|
9
|
+
spec.authors = ["William Eisert"]
|
|
10
|
+
spec.email = ["weisert@eisertdev.com"]
|
|
11
|
+
|
|
12
|
+
spec.summary = %q{Yet Another Parser for Apache Configuration}
|
|
13
|
+
spec.description = %q{Parsing and manipulation gem for Apache configuration files. Can also be used to control remote servers using a secure RESTful API. Think, Webmin.}
|
|
14
|
+
spec.homepage = "https://github.com/eiwi1101/yapfac"
|
|
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_development_dependency "bundler", "~> 1.10"
|
|
23
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
|
24
|
+
spec.add_development_dependency "rspec"
|
|
25
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: yapfac
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- William Eisert
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2015-12-28 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: Parsing and manipulation gem for Apache configuration files. Can also
|
|
56
|
+
be used to control remote servers using a secure RESTful API. Think, Webmin.
|
|
57
|
+
email:
|
|
58
|
+
- weisert@eisertdev.com
|
|
59
|
+
executables: []
|
|
60
|
+
extensions: []
|
|
61
|
+
extra_rdoc_files: []
|
|
62
|
+
files:
|
|
63
|
+
- .gitignore
|
|
64
|
+
- .rspec
|
|
65
|
+
- .travis.yml
|
|
66
|
+
- CODE_OF_CONDUCT.md
|
|
67
|
+
- Gemfile
|
|
68
|
+
- LICENSE.txt
|
|
69
|
+
- README.md
|
|
70
|
+
- Rakefile
|
|
71
|
+
- bin/console
|
|
72
|
+
- bin/quicktest
|
|
73
|
+
- bin/setup
|
|
74
|
+
- lib/yapfac.rb
|
|
75
|
+
- lib/yapfac/apache.rb
|
|
76
|
+
- lib/yapfac/apache/directive.rb
|
|
77
|
+
- lib/yapfac/apache/scope.rb
|
|
78
|
+
- lib/yapfac/apache/site.rb
|
|
79
|
+
- lib/yapfac/version.rb
|
|
80
|
+
- yapfac.gemspec
|
|
81
|
+
homepage: https://github.com/eiwi1101/yapfac
|
|
82
|
+
licenses:
|
|
83
|
+
- MIT
|
|
84
|
+
metadata: {}
|
|
85
|
+
post_install_message:
|
|
86
|
+
rdoc_options: []
|
|
87
|
+
require_paths:
|
|
88
|
+
- lib
|
|
89
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
90
|
+
requirements:
|
|
91
|
+
- - ! '>='
|
|
92
|
+
- !ruby/object:Gem::Version
|
|
93
|
+
version: '0'
|
|
94
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
95
|
+
requirements:
|
|
96
|
+
- - ! '>='
|
|
97
|
+
- !ruby/object:Gem::Version
|
|
98
|
+
version: '0'
|
|
99
|
+
requirements: []
|
|
100
|
+
rubyforge_project:
|
|
101
|
+
rubygems_version: 2.5.0
|
|
102
|
+
signing_key:
|
|
103
|
+
specification_version: 4
|
|
104
|
+
summary: Yet Another Parser for Apache Configuration
|
|
105
|
+
test_files: []
|