the_help 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b547da095e93e52c0aac704bdab080d11380c418
4
- data.tar.gz: d441b63f66290cbd79662fcb46b3e31f58bc4360
3
+ metadata.gz: 11faa4a08713a7aaf31284ead2538784c24faa12
4
+ data.tar.gz: a0146884e4d5b11dda20c8d82d3d390aacb6dab0
5
5
  SHA512:
6
- metadata.gz: beb7e5f451640bd49d0d81e9e570f87ec871c011976a6c58e9a2fae413652490be6c86e03941754f8f762adb6591c4d8a68e67e710ce0a8a990da4e0e845ddff
7
- data.tar.gz: c9472ef41f6592f00900c34fffe429707a1109c6ab4a89425341e48ce08b0cfc75f014b167ad6b661913167e6f09f9826ed43a1483352e3530535e562896426c
6
+ metadata.gz: 1b3b331eb3fda6b1c3500ff229fb2e809add4fa1c213a72705ae8e0dd4916806ea36dabba2ad86518a8e0d098b73bb4c78fee4dee9eb2ebd23706488b04cf42c
7
+ data.tar.gz: 92d7fd1cdd5827bcd8fb5bcf626bf3eeb9873968256dafad8c29421d090f0a0e26df1cb5e288ff85b16b982d481791b18e9278032532cd49001d1b173242fad9
@@ -0,0 +1,35 @@
1
+ # Ruby CircleCI 2.0 configuration file
2
+ #
3
+ # Check https://circleci.com/docs/2.0/language-ruby/ for more details
4
+ #
5
+ version: 2
6
+ jobs:
7
+ build:
8
+ docker:
9
+ # specify the version you desire here
10
+ - image: circleci/ruby:2.4.1
11
+
12
+ steps:
13
+ - checkout
14
+
15
+ # Download and cache dependencies
16
+ - restore_cache:
17
+ keys:
18
+ - v1-dependencies-{{ checksum "Gemfile.lock" }}
19
+ # fallback to using the latest cache if no exact match is found
20
+ - v1-dependencies-
21
+
22
+ - run:
23
+ name: install dependencies
24
+ command: |
25
+ bundle install --jobs=4 --retry=3 --path vendor/bundle
26
+
27
+ - save_cache:
28
+ paths:
29
+ - ./vendor/bundle
30
+ key: v1-dependencies-{{ checksum "Gemfile.lock" }}
31
+
32
+ # run tests!
33
+ - run:
34
+ name: run tests
35
+ command: bundle exec rspec
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- the_help (1.0.1)
4
+ the_help (1.0.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -48,4 +48,4 @@ DEPENDENCIES
48
48
  the_help!
49
49
 
50
50
  BUNDLED WITH
51
- 1.16.0.pre.2
51
+ 1.16.0
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'logger'
4
+ require 'set'
4
5
  require 'the_help/errors'
5
6
  require 'the_help/provides_callbacks'
6
7
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TheHelp
4
- VERSION = '1.0.1'
4
+ VERSION = '1.0.2'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: the_help
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Wilger
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-10-13 00:00:00.000000000 Z
11
+ date: 2017-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -59,6 +59,7 @@ executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
+ - ".circleci/config.yml"
62
63
  - ".gitignore"
63
64
  - ".rspec"
64
65
  - ".rubocop.yml"
@@ -97,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
97
98
  version: '0'
98
99
  requirements: []
99
100
  rubyforge_project:
100
- rubygems_version: 2.6.12
101
+ rubygems_version: 2.6.14
101
102
  signing_key:
102
103
  specification_version: 4
103
104
  summary: A service layer framework