hammer_cli_sam 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 ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ M2FmZmE0ZjhiOTZjMTllZWM0ZmJhZmRkODk0NDI2OTZiZmIwZTAyMA==
5
+ data.tar.gz: !binary |-
6
+ ODFjNmNhNTk0ODQyNDkzYTE3ZmQwM2Q2ZDZjYThmODE2MWFmNDIxNg==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ NGE4MDI3NjA0NDNhZjMxZWEyNDBlYTBlNmM3OTIxYzZlZmYwMzBhN2RkNjU0
10
+ Mzk4ODVhZTA5MTdjMDNmMjEyZjExYjJiMTk2MjU2NDY2NjYzZjQzNDU5NDlh
11
+ MGMwYjFlZmM0N2ZjZmZjZTcyMjRhZGE1MWNkZWFjMTRhNTBkMzg=
12
+ data.tar.gz: !binary |-
13
+ Mzg0ZDc5NDFhNjZiOTIzOGNlZmIyMWM0NWNmNWM0YjlkMzBmZDhhNmZmZDU0
14
+ MThiZDk3YTQwOTQ1OGQwM2I2MjI5NjNhY2M2NTAwYjIwMTRkMzUxZGRlMTcw
15
+ NWViM2M5NTliNTk1YWY5MzdmYjlkNTFhMjY3ZjJjMjljZTUwNGM=
data/.gitignore ADDED
@@ -0,0 +1,26 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ coverage
6
+ InstalledFiles
7
+ lib/bundler/man
8
+ pkg
9
+ rdoc
10
+ spec/reports
11
+ test/tmp
12
+ test/version_tmp
13
+ tmp
14
+ Gemfile.lock
15
+ Gemfile.local
16
+ rubocop.xml
17
+
18
+ # YARD artifacts
19
+ .yardoc
20
+ _yardoc
21
+ doc/
22
+
23
+ # rvm
24
+ .rvmrc
25
+ .ruby-version
26
+ .ruby-gemset
data/.rubocop.yml ADDED
@@ -0,0 +1,75 @@
1
+ MethodLength:
2
+ Description: 'Avoid methods longer than 30 lines of code.'
3
+ Max: 30 # default is 10
4
+
5
+ Documentation:
6
+ Enabled: false
7
+
8
+ StringLiterals:
9
+ Enabled: false
10
+
11
+ EmptyLinesAroundBody:
12
+ Enabled: false
13
+
14
+ HashSyntax:
15
+ Enabled: false
16
+
17
+ SpaceInsideHashLiteralBraces:
18
+ Enabled: false
19
+
20
+ Encoding:
21
+ Enabled: false
22
+
23
+ LineLength:
24
+ Max: 100
25
+
26
+ FormatString:
27
+ Enabled: false # we use % for i18n
28
+
29
+ IfUnlessModifier:
30
+ Enabled: false
31
+
32
+ Next:
33
+ Enabled: false # don't force next over conditions
34
+
35
+ MethodCalledOnDoEndBlock:
36
+ Enabled: true
37
+
38
+ LeadingCommentSpace:
39
+ Enabled: false
40
+
41
+ RescueModifier:
42
+ Enabled: false
43
+
44
+ AssignmentInCondition:
45
+ Enabled: false
46
+
47
+ AlignParameters:
48
+ Enabled: false # don't care if parameters are not aligned
49
+
50
+ AlignParameters:
51
+ Enabled: false # don't care if parameters are not aligned
52
+
53
+ WhileUntilModifier:
54
+ Enabled: false
55
+
56
+ ParenthesesAroundCondition:
57
+ Enabled: false
58
+
59
+ DotPosition:
60
+ Enabled: false
61
+
62
+ Lambda:
63
+ Enabled: false # don't require -> for single line lambdas
64
+
65
+ RedundantSelf:
66
+ Enabled: false
67
+
68
+ RedundantReturn:
69
+ Enabled: false
70
+
71
+ SingleLineBlockParams:
72
+ Enabled: false
73
+
74
+ FormatString:
75
+ Enabled: false # we use % for i18n
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+
3
+ rvm:
4
+ - 2.1
data/Gemfile ADDED
@@ -0,0 +1,10 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
4
+
5
+ # for generating i18n files, gettext > 3.0 dropped ruby 1.8 support
6
+ gem 'gettext', '~> 2.0'
7
+
8
+ # load local gemfile
9
+ local_gemfile = File.join(File.dirname(__FILE__), 'Gemfile.local')
10
+ self.instance_eval(Bundler.read_file(local_gemfile)) if File.exist?(local_gemfile)