tamplier 0.0.1
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 +7 -0
- data/lib/tamplier/version.rb +3 -0
- data/lib/tamplier.rb +4 -0
- metadata +79 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: fea1bfad7a66cbbf76e0750bb1dee17b250338ec
|
|
4
|
+
data.tar.gz: 019c9084db0414d3b27631751c61b1b3e6398f7b
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: dfaedf18b8a739b2c16e50bb73ea5bd021e2e4dba19524f42e710c46a47057dd3bf772df4a6cebf6a91e179df0c3fe07f0a8a069b7633d0ad25c9eb3d8761664
|
|
7
|
+
data.tar.gz: a0d2dfc274ede643f08ebc8ff3419877d1053f98c10d795749fd2db421ac421ffcc0fd679c54699ded135bf4ce6c93c2f68357e46cc0e37737bd91893d3a1f4e
|
data/lib/tamplier.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: tamplier
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Alexander Shestakov
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2014-05-06 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.6'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.6'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rake
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
description: |
|
|
42
|
+
How many times your deploys were failed, because you forgot to update .yml files on server... No more!
|
|
43
|
+
Tamplier gem checks, that all keys from any .yml.sample files are actually exist in real .yml files.
|
|
44
|
+
That allows to detect configuration problems earlier and spend less time on deployment problems investigations.
|
|
45
|
+
Gem also provides command line utility to quickly setup fresh development environment by copying or symlinking .yml.sample files.
|
|
46
|
+
email:
|
|
47
|
+
- Maksar.mail@gmail.com
|
|
48
|
+
executables: []
|
|
49
|
+
extensions: []
|
|
50
|
+
extra_rdoc_files: []
|
|
51
|
+
files:
|
|
52
|
+
- lib/tamplier.rb
|
|
53
|
+
- lib/tamplier/version.rb
|
|
54
|
+
homepage: https://github.com/maksar/tamplier
|
|
55
|
+
licenses:
|
|
56
|
+
- MIT
|
|
57
|
+
metadata: {}
|
|
58
|
+
post_install_message:
|
|
59
|
+
rdoc_options: []
|
|
60
|
+
require_paths:
|
|
61
|
+
- lib
|
|
62
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
63
|
+
requirements:
|
|
64
|
+
- - ">="
|
|
65
|
+
- !ruby/object:Gem::Version
|
|
66
|
+
version: '0'
|
|
67
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
68
|
+
requirements:
|
|
69
|
+
- - ">="
|
|
70
|
+
- !ruby/object:Gem::Version
|
|
71
|
+
version: '0'
|
|
72
|
+
requirements: []
|
|
73
|
+
rubyforge_project:
|
|
74
|
+
rubygems_version: 2.2.2
|
|
75
|
+
signing_key:
|
|
76
|
+
specification_version: 4
|
|
77
|
+
summary: Tamplier gem provides ability to manage .yml.sample config files in your
|
|
78
|
+
ruby projects.
|
|
79
|
+
test_files: []
|