contentful_redis 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 9b15713bc5ed60f9fb87557a528dc1f549165e00
4
+ data.tar.gz: 973455ff4575e64a69b763258d93bf0b23829b60
5
+ SHA512:
6
+ metadata.gz: 06ff847decb25431a66c36f69fed857b353ac1cbcb761e5eb8eb277c70f7b09033288ce2d0d099fb948a6ba0e8a5e06248dee211a0b9147f6a5b7c31ca478080
7
+ data.tar.gz: 6aa2b617e36acff8b0729b5f9b6b5f076dbff6b5e24ea92a866d3d842ef3645f2bdf8e5f1b561a9aeb68a0ab8f5b0ffdf8fe814d3fadddfb9968356eb6a65e43
data/.gitignore ADDED
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
12
+ *.gem
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,38 @@
1
+ AllCops:
2
+ DisplayStyleGuide: true
3
+ DisplayCopNames: true
4
+ Exclude:
5
+ - 'bin/**/*'
6
+ - 'Gemfile'
7
+ - 'Gemfile.lock'
8
+ Documentation:
9
+ Enabled: false
10
+ Metrics/ClassLength:
11
+ Max: 150
12
+ Metrics/LineLength:
13
+ Max: 175
14
+ Exclude:
15
+ - 'spec/**/*'
16
+ Metrics/MethodLength:
17
+ Max: 25
18
+ Metrics/BlockLength:
19
+ Exclude:
20
+ - 'spec/**/*'
21
+ Metrics/AbcSize:
22
+ Max: 25
23
+ Style/SymbolArray:
24
+ Enabled: false
25
+ Style/WordArray:
26
+ Enabled: false
27
+ Style/RedundantBegin:
28
+ Enabled: false
29
+ Lint/ReturnInVoidContext:
30
+ Enabled: false
31
+ Performance/Casecmp:
32
+ Enabled: false
33
+ Style/EvalWithLocation:
34
+ Enabled: false
35
+ Style/IfUnlessModifier:
36
+ Enabled: false
37
+ Style/RedundantFreeze:
38
+ Enabled: false
data/.travis.yml ADDED
@@ -0,0 +1,11 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.5.0
5
+ services:
6
+ - redis-server
7
+ before_install:
8
+ - gem install bundler
9
+ script:
10
+ - bundle exec rspec
11
+ - bundle exec rubocop lib/ spec/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in contentful_redis-rb.gemspec
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,94 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ contentful_redis (0.0.1)
5
+ faraday
6
+ redis-store
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ activesupport (5.2.1)
12
+ concurrent-ruby (~> 1.0, >= 1.0.2)
13
+ i18n (>= 0.7, < 2)
14
+ minitest (~> 5.1)
15
+ tzinfo (~> 1.1)
16
+ addressable (2.5.2)
17
+ public_suffix (>= 2.0.2, < 4.0)
18
+ ast (2.4.0)
19
+ coderay (1.1.2)
20
+ concurrent-ruby (1.0.5)
21
+ crack (0.4.3)
22
+ safe_yaml (~> 1.0.0)
23
+ diff-lcs (1.3)
24
+ factory_bot (4.11.0)
25
+ activesupport (>= 3.0.0)
26
+ faraday (0.15.3)
27
+ multipart-post (>= 1.2, < 3)
28
+ hashdiff (0.3.7)
29
+ i18n (1.1.0)
30
+ concurrent-ruby (~> 1.0)
31
+ jaro_winkler (1.5.1)
32
+ method_source (0.9.0)
33
+ minitest (5.11.3)
34
+ multipart-post (2.0.0)
35
+ parallel (1.12.1)
36
+ parser (2.5.1.2)
37
+ ast (~> 2.4.0)
38
+ powerpack (0.1.2)
39
+ pry (0.11.3)
40
+ coderay (~> 1.1.0)
41
+ method_source (~> 0.9.0)
42
+ public_suffix (3.0.3)
43
+ rainbow (3.0.0)
44
+ rake (12.3.1)
45
+ redis (4.0.2)
46
+ redis-store (1.5.0)
47
+ redis (>= 2.2, < 5)
48
+ rspec (3.8.0)
49
+ rspec-core (~> 3.8.0)
50
+ rspec-expectations (~> 3.8.0)
51
+ rspec-mocks (~> 3.8.0)
52
+ rspec-core (3.8.0)
53
+ rspec-support (~> 3.8.0)
54
+ rspec-expectations (3.8.1)
55
+ diff-lcs (>= 1.2.0, < 2.0)
56
+ rspec-support (~> 3.8.0)
57
+ rspec-mocks (3.8.0)
58
+ diff-lcs (>= 1.2.0, < 2.0)
59
+ rspec-support (~> 3.8.0)
60
+ rspec-support (3.8.0)
61
+ rubocop (0.59.1)
62
+ jaro_winkler (~> 1.5.1)
63
+ parallel (~> 1.10)
64
+ parser (>= 2.5, != 2.5.1.1)
65
+ powerpack (~> 0.1)
66
+ rainbow (>= 2.2.2, < 4.0)
67
+ ruby-progressbar (~> 1.7)
68
+ unicode-display_width (~> 1.0, >= 1.0.1)
69
+ ruby-progressbar (1.10.0)
70
+ safe_yaml (1.0.4)
71
+ thread_safe (0.3.6)
72
+ tzinfo (1.2.5)
73
+ thread_safe (~> 0.1)
74
+ unicode-display_width (1.4.0)
75
+ webmock (3.4.2)
76
+ addressable (>= 2.3.6)
77
+ crack (>= 0.3.2)
78
+ hashdiff
79
+
80
+ PLATFORMS
81
+ ruby
82
+
83
+ DEPENDENCIES
84
+ bundler
85
+ contentful_redis!
86
+ factory_bot
87
+ pry
88
+ rake
89
+ rspec
90
+ rubocop
91
+ webmock
92
+
93
+ BUNDLED WITH
94
+ 1.16.5