configtask 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +3 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +33 -0
- data/Rakefile +2 -0
- data/configtask.gemspec +24 -0
- data/lib/configtask.rb +4 -0
- data/lib/configtask/config.rake +36 -0
- data/lib/configtask/version.rb +4 -0
- data/lib/erb/config.yml.erb +9 -0
- metadata +82 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 0ca7914df82635af12fb9d747e1ce0ece29beec2
|
4
|
+
data.tar.gz: d861800b12aa755be9ebda5c3c7ea3b5b4a7c185
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b0f9fc5bf97a4bb86751fed9f500ddf8c03365ed0293f973a642ca06cfe6ce3dd8732c53f09ed4047b18fa8716d0ca9f8357ab09963af38fd2ddfca8ec310dd7
|
7
|
+
data.tar.gz: 87c2996072de9f8567ae8612ed0e6eb5dca2659b592d493df3fdb40076b40c480688d7232588f2be553fcd26cc04735a76b386e34a94915635c57b9ed9ce697b
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Stephen Hu
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
# configtask
|
2
|
+
|
3
|
+
Rakefile extension to automatically generate configuration files for
|
4
|
+
web sites.
|
5
|
+
|
6
|
+
## Installation
|
7
|
+
|
8
|
+
Add this line to your application's Gemfile:
|
9
|
+
|
10
|
+
```ruby
|
11
|
+
gem 'configtask'
|
12
|
+
```
|
13
|
+
|
14
|
+
And then execute:
|
15
|
+
|
16
|
+
$ bundle
|
17
|
+
|
18
|
+
Or install it yourself as:
|
19
|
+
|
20
|
+
$ gem install configtask
|
21
|
+
|
22
|
+
## Usage
|
23
|
+
|
24
|
+
rake config:create
|
25
|
+
|
26
|
+
## Contributing
|
27
|
+
|
28
|
+
1. Fork it ( https://github.com/[my-github-username]/configtask/fork )
|
29
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
30
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
31
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
32
|
+
5. Create a new Pull Request
|
33
|
+
|
data/Rakefile
ADDED
data/configtask.gemspec
ADDED
@@ -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 'configtask/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "configtask"
|
8
|
+
spec.version = ConfigTask::VERSION
|
9
|
+
spec.authors = ["stephenhu"]
|
10
|
+
spec.email = ["epynonymous@outlook.com"]
|
11
|
+
spec.summary = %q{Generates web configuration files.}
|
12
|
+
spec.description = %q{Generates website configuration files.}
|
13
|
+
spec.homepage = "https://github.com/stephenhu/configtask"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.7"
|
22
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
23
|
+
end
|
24
|
+
|
data/lib/configtask.rb
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
require "digest"
|
2
|
+
require "erb"
|
3
|
+
require "securerandom"
|
4
|
+
|
5
|
+
namespace :config do
|
6
|
+
|
7
|
+
desc "create configuration file"
|
8
|
+
task :create do
|
9
|
+
|
10
|
+
erb = File.join( File.dirname(__FILE__), "../erb/config.yml.erb" )
|
11
|
+
dst = File.join( Dir.pwd, ".config.yml" )
|
12
|
+
|
13
|
+
if File.exists?(dst)
|
14
|
+
|
15
|
+
puts "Error: file exists, aborting..."
|
16
|
+
exit
|
17
|
+
|
18
|
+
end
|
19
|
+
|
20
|
+
apikey = Digest::SHA256.hexdigest(SecureRandom.hex(30))
|
21
|
+
enckey = Digest::SHA256.hexdigest(SecureRandom.hex(30))
|
22
|
+
enciv = Digest::SHA256.hexdigest(SecureRandom.hex(30))
|
23
|
+
|
24
|
+
app = ERB.new(File.read(erb))
|
25
|
+
contents = app.result(binding)
|
26
|
+
|
27
|
+
f = File.open( dst, "w" )
|
28
|
+
f.write(contents)
|
29
|
+
f.close
|
30
|
+
|
31
|
+
puts ".config.yml created"
|
32
|
+
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
36
|
+
|
metadata
ADDED
@@ -0,0 +1,82 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: configtask
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- stephenhu
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-11-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.7'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.7'
|
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: Generates website configuration files.
|
42
|
+
email:
|
43
|
+
- epynonymous@outlook.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- ".gitignore"
|
49
|
+
- Gemfile
|
50
|
+
- LICENSE.txt
|
51
|
+
- README.md
|
52
|
+
- Rakefile
|
53
|
+
- configtask.gemspec
|
54
|
+
- lib/configtask.rb
|
55
|
+
- lib/configtask/config.rake
|
56
|
+
- lib/configtask/version.rb
|
57
|
+
- lib/erb/config.yml.erb
|
58
|
+
homepage: https://github.com/stephenhu/configtask
|
59
|
+
licenses:
|
60
|
+
- MIT
|
61
|
+
metadata: {}
|
62
|
+
post_install_message:
|
63
|
+
rdoc_options: []
|
64
|
+
require_paths:
|
65
|
+
- lib
|
66
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: '0'
|
71
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
requirements: []
|
77
|
+
rubyforge_project:
|
78
|
+
rubygems_version: 2.2.2
|
79
|
+
signing_key:
|
80
|
+
specification_version: 4
|
81
|
+
summary: Generates web configuration files.
|
82
|
+
test_files: []
|