stacked_config 1.0.6 → 1.0.7
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 +4 -4
- data/.gitignore +173 -0
- data/.travis.yml +2 -1
- data/lib/stacked_config/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3c54b24f5f102a0571f8ec849a4bdc7b8e52cf31
|
|
4
|
+
data.tar.gz: 9a758dfafc06d49f8aaa3f81aaec219336951fef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1267caf89df15bb95d108f7023316bcd889f6b2975fbb0ff397b6196ed30b488161c1c3575b1ebb072b96461b977e6e05755094f240ad17a0981c91d7fb265e4
|
|
7
|
+
data.tar.gz: 289211fa5c3a853a716286c90842976f97bffbf94dd2ad2cb533a21620a8d91c2e5e5c0460733f64534f2dd0d1dcbe80c0ab56e7c3bab2ef59d350b8a4f62174
|
data/.gitignore
CHANGED
|
@@ -1,3 +1,176 @@
|
|
|
1
|
+
### Ruby template
|
|
2
|
+
*.gem
|
|
3
|
+
*.rbc
|
|
4
|
+
/.config
|
|
5
|
+
/coverage/
|
|
6
|
+
/InstalledFiles
|
|
7
|
+
/pkg/
|
|
8
|
+
/spec/reports/
|
|
9
|
+
/spec/examples.txt
|
|
10
|
+
/test/tmp/
|
|
11
|
+
/test/version_tmp/
|
|
12
|
+
/tmp/
|
|
13
|
+
|
|
14
|
+
## Specific to RubyMotion:
|
|
15
|
+
.dat*
|
|
16
|
+
.repl_history
|
|
17
|
+
build/
|
|
18
|
+
|
|
19
|
+
## Documentation cache and generated files:
|
|
20
|
+
/.yardoc/
|
|
21
|
+
/_yardoc/
|
|
22
|
+
/doc/
|
|
23
|
+
/rdoc/
|
|
24
|
+
|
|
25
|
+
## Environment normalisation:
|
|
26
|
+
/.bundle/
|
|
27
|
+
/vendor/bundle
|
|
28
|
+
/lib/bundler/man/
|
|
29
|
+
|
|
30
|
+
# for a library or gem, you might want to ignore these files since the code is
|
|
31
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
32
|
+
# Gemfile.lock
|
|
33
|
+
# .ruby-version
|
|
34
|
+
# .ruby-gemset
|
|
35
|
+
|
|
36
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
|
37
|
+
.rvmrc
|
|
38
|
+
### Linux template
|
|
39
|
+
*~
|
|
40
|
+
|
|
41
|
+
# KDE directory preferences
|
|
42
|
+
.directory
|
|
43
|
+
|
|
44
|
+
# Linux trash folder which might appear on any partition or disk
|
|
45
|
+
.Trash-*
|
|
46
|
+
### Eclipse template
|
|
47
|
+
*.pydevproject
|
|
48
|
+
.metadata
|
|
49
|
+
.gradle
|
|
50
|
+
bin/
|
|
51
|
+
tmp/
|
|
52
|
+
*.tmp
|
|
53
|
+
*.bak
|
|
54
|
+
*.swp
|
|
55
|
+
*~.nib
|
|
56
|
+
local.properties
|
|
57
|
+
.settings/
|
|
58
|
+
.loadpath
|
|
59
|
+
|
|
60
|
+
# Eclipse Core
|
|
61
|
+
.project
|
|
62
|
+
|
|
63
|
+
# External tool builders
|
|
64
|
+
.externalToolBuilders/
|
|
65
|
+
|
|
66
|
+
# Locally stored "Eclipse launch configurations"
|
|
67
|
+
*.launch
|
|
68
|
+
|
|
69
|
+
# CDT-specific
|
|
70
|
+
.cproject
|
|
71
|
+
|
|
72
|
+
# JDT-specific (Eclipse Java Development Tools)
|
|
73
|
+
.classpath
|
|
74
|
+
|
|
75
|
+
# Java annotation processor (APT)
|
|
76
|
+
.factorypath
|
|
77
|
+
|
|
78
|
+
# PDT-specific
|
|
79
|
+
.buildpath
|
|
80
|
+
|
|
81
|
+
# sbteclipse plugin
|
|
82
|
+
.target
|
|
83
|
+
|
|
84
|
+
# TeXlipse plugin
|
|
85
|
+
.texlipse
|
|
86
|
+
### JetBrains template
|
|
87
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
|
|
88
|
+
|
|
89
|
+
*.iml
|
|
90
|
+
|
|
91
|
+
## Directory-based project format:
|
|
92
|
+
.idea/
|
|
93
|
+
# if you remove the above rule, at least ignore the following:
|
|
94
|
+
|
|
95
|
+
# User-specific stuff:
|
|
96
|
+
# .idea/workspace.xml
|
|
97
|
+
# .idea/tasks.xml
|
|
98
|
+
# .idea/dictionaries
|
|
99
|
+
|
|
100
|
+
# Sensitive or high-churn files:
|
|
101
|
+
# .idea/dataSources.ids
|
|
102
|
+
# .idea/dataSources.xml
|
|
103
|
+
# .idea/sqlDataSources.xml
|
|
104
|
+
# .idea/dynamic.xml
|
|
105
|
+
# .idea/uiDesigner.xml
|
|
106
|
+
|
|
107
|
+
# Gradle:
|
|
108
|
+
# .idea/gradle.xml
|
|
109
|
+
# .idea/libraries
|
|
110
|
+
|
|
111
|
+
# Mongo Explorer plugin:
|
|
112
|
+
# .idea/mongoSettings.xml
|
|
113
|
+
|
|
114
|
+
## File-based project format:
|
|
115
|
+
*.ipr
|
|
116
|
+
*.iws
|
|
117
|
+
|
|
118
|
+
## Plugin-specific files:
|
|
119
|
+
|
|
120
|
+
# IntelliJ
|
|
121
|
+
/out/
|
|
122
|
+
|
|
123
|
+
# mpeltonen/sbt-idea plugin
|
|
124
|
+
.idea_modules/
|
|
125
|
+
|
|
126
|
+
# JIRA plugin
|
|
127
|
+
atlassian-ide-plugin.xml
|
|
128
|
+
|
|
129
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
130
|
+
com_crashlytics_export_strings.xml
|
|
131
|
+
crashlytics.properties
|
|
132
|
+
crashlytics-build.properties
|
|
133
|
+
### Emacs template
|
|
134
|
+
# -*- mode: gitignore; -*-
|
|
135
|
+
*~
|
|
136
|
+
\#*\#
|
|
137
|
+
/.emacs.desktop
|
|
138
|
+
/.emacs.desktop.lock
|
|
139
|
+
*.elc
|
|
140
|
+
auto-save-list
|
|
141
|
+
tramp
|
|
142
|
+
.\#*
|
|
143
|
+
|
|
144
|
+
# Org-mode
|
|
145
|
+
.org-id-locations
|
|
146
|
+
*_archive
|
|
147
|
+
|
|
148
|
+
# flymake-mode
|
|
149
|
+
*_flymake.*
|
|
150
|
+
|
|
151
|
+
# eshell files
|
|
152
|
+
/eshell/history
|
|
153
|
+
/eshell/lastdir
|
|
154
|
+
|
|
155
|
+
# elpa packages
|
|
156
|
+
/elpa/
|
|
157
|
+
|
|
158
|
+
# reftex files
|
|
159
|
+
*.rel
|
|
160
|
+
|
|
161
|
+
# AUCTeX auto folder
|
|
162
|
+
/auto/
|
|
163
|
+
|
|
164
|
+
# cask packages
|
|
165
|
+
.cask/
|
|
166
|
+
### Vim template
|
|
167
|
+
[._]*.s[a-w][a-z]
|
|
168
|
+
[._]s[a-w][a-z]
|
|
169
|
+
*.un~
|
|
170
|
+
Session.vim
|
|
171
|
+
.netrwhist
|
|
172
|
+
*~
|
|
173
|
+
|
|
1
174
|
*.gem
|
|
2
175
|
*.rbc
|
|
3
176
|
.bundle
|
data/.travis.yml
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stacked_config
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Laurent B.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-03-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -171,7 +171,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
171
171
|
version: '0'
|
|
172
172
|
requirements: []
|
|
173
173
|
rubyforge_project:
|
|
174
|
-
rubygems_version: 2.5.
|
|
174
|
+
rubygems_version: 2.4.5.1
|
|
175
175
|
signing_key:
|
|
176
176
|
specification_version: 4
|
|
177
177
|
summary: Manages config files according to standard policy.
|