kapost-bootstrapper 0.1.0 → 0.1.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 +4 -4
- data/.codeclimate.yml +18 -0
- data/.rubocop.yml +56 -0
- data/.ruby-version +1 -0
- data/Gemfile +2 -0
- data/README.md +2 -0
- data/circle.yml +3 -0
- data/lib/kapost/bootstrapper/version.rb +1 -1
- data/lib/kapost/bootstrapper.rb +1 -0
- metadata +5 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4e0b4fd05ccaa6ca7895b63404e848a3db68d2d8
|
|
4
|
+
data.tar.gz: ce85c94d469ee43984d26e5e89531d0d40e2914e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b172a824182619305db3d186b4665e7f81fd12d4b3f225d85b3d26cef97a36984b9205d2fe1572398698ce4607d54694e91036d556cf156036b90850c1e9bc15
|
|
7
|
+
data.tar.gz: 9a48cc7a7c985535c60744051ab141597208d541f2b0f0aea9d0d7a423fbb522fab9ba62306c1446aaef1f7677a9b3d7cec99aec3f662e9ef222dff93d5bbb86
|
data/.codeclimate.yml
ADDED
data/.rubocop.yml
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
|
|
2
|
+
AllCops:
|
|
3
|
+
DisplayCopNames: true
|
|
4
|
+
DisplayStyleGuide: true
|
|
5
|
+
|
|
6
|
+
Include:
|
|
7
|
+
- "**/Rakefile"
|
|
8
|
+
- "**/config.ru"
|
|
9
|
+
Exclude:
|
|
10
|
+
- "vendor/**/*"
|
|
11
|
+
- "spec/fixtures/**/*"
|
|
12
|
+
- "bin/**/*"
|
|
13
|
+
- "script/**/*"
|
|
14
|
+
Metrics/LineLength:
|
|
15
|
+
Max: 120
|
|
16
|
+
Rails/Date:
|
|
17
|
+
Enabled: false
|
|
18
|
+
Rails/TimeZone:
|
|
19
|
+
Enabled: false
|
|
20
|
+
AllCops:
|
|
21
|
+
TargetRubyVersion: 2.3
|
|
22
|
+
Style/AndOr:
|
|
23
|
+
EnforcedStyle: conditionals
|
|
24
|
+
Style/CaseIndentation:
|
|
25
|
+
IndentOneStep: true
|
|
26
|
+
Style/Documentation:
|
|
27
|
+
Enabled: false
|
|
28
|
+
Style/EachWithObject:
|
|
29
|
+
Enabled: false
|
|
30
|
+
Style/ExtraSpacing:
|
|
31
|
+
Exclude:
|
|
32
|
+
- "config/routes.rb"
|
|
33
|
+
Style/HashSyntax:
|
|
34
|
+
Exclude:
|
|
35
|
+
- "lib/tasks/**/*"
|
|
36
|
+
Style/MultilineOperationIndentation:
|
|
37
|
+
EnforcedStyle: indented
|
|
38
|
+
Style/NumericLiterals:
|
|
39
|
+
Enabled: false
|
|
40
|
+
Style/PercentLiteralDelimiters:
|
|
41
|
+
PreferredDelimiters:
|
|
42
|
+
"%w": "[]"
|
|
43
|
+
"%W": "[]"
|
|
44
|
+
"%i": "[]"
|
|
45
|
+
"%I": "[]"
|
|
46
|
+
"%r": "()"
|
|
47
|
+
Style/SignalException:
|
|
48
|
+
EnforcedStyle: semantic
|
|
49
|
+
Style/SingleLineBlockParams:
|
|
50
|
+
Enabled: false
|
|
51
|
+
Style/StringLiterals:
|
|
52
|
+
EnforcedStyle: double_quotes
|
|
53
|
+
Style/MultilineMethodCallIndentation:
|
|
54
|
+
Exclude:
|
|
55
|
+
- "spec/**/*.rb"
|
|
56
|
+
|
data/.ruby-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2.3.1
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Kapost::Bootstrapper
|
|
2
2
|
|
|
3
|
+
[](https://badge.fury.io/rb/kapost-bootstrapper)[](https://circleci.com/gh/kapost/kapost-bootstrapper)[](https://codeclimate.com/repos/57572a32ba1caf007e0006eb/feed)[](https://codeclimate.com/repos/57572a32ba1caf007e0006eb/coverage)
|
|
4
|
+
|
|
3
5
|
Used by Kapost apps to get themselves bootstrapped. To enhance developer happiness, every app should have a single command to get it set up (`./bin/setup`) and one command to run the whole thing (`./bin/run`). This gem attempts to help with the first script by encapsulating a useful set of helper functions that makes detecting and installing dependencies simpler.
|
|
4
6
|
|
|
5
7
|
## Installation
|
data/circle.yml
ADDED
data/lib/kapost/bootstrapper.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kapost-bootstrapper
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Paul Sadauskas
|
|
@@ -59,8 +59,11 @@ executables: []
|
|
|
59
59
|
extensions: []
|
|
60
60
|
extra_rdoc_files: []
|
|
61
61
|
files:
|
|
62
|
+
- ".codeclimate.yml"
|
|
62
63
|
- ".gitignore"
|
|
63
64
|
- ".rspec"
|
|
65
|
+
- ".rubocop.yml"
|
|
66
|
+
- ".ruby-version"
|
|
64
67
|
- ".travis.yml"
|
|
65
68
|
- Gemfile
|
|
66
69
|
- Guardfile
|
|
@@ -68,6 +71,7 @@ files:
|
|
|
68
71
|
- Rakefile
|
|
69
72
|
- bin/console
|
|
70
73
|
- bin/setup
|
|
74
|
+
- circle.yml
|
|
71
75
|
- kapost-bootstrapper.gemspec
|
|
72
76
|
- lib/kapost/bootstrapper.rb
|
|
73
77
|
- lib/kapost/bootstrapper/version.rb
|