snfoil 1.1.1 → 1.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2d1a94d92d33cdf444925ed6ee9c17698756e0de24cee72d7a51f92af4d7f3bd
4
- data.tar.gz: 3dc778d067ffc17d9637743ce1d5ad10031816447318c6803967b14b5a1d973b
3
+ metadata.gz: 648b6155df6c30c12cf82fe2e709e37f3f3040805e58904a515e4eb2337f9b8b
4
+ data.tar.gz: f2bbe00d52797e6ff9d97b970495148d55bfe44c6c04590cd8e95f72ac40e57a
5
5
  SHA512:
6
- metadata.gz: 1361d4a0b1cf7b5f4e74717726dab27b02653b9a0aeea2d57f73add5e35557bd83c3009b908f8857e8a47df96bde821bd12e722e8a0447428c2cdd0e30569ef1
7
- data.tar.gz: 1e2149d6577ab3f4d8e0dcdba6185d55530a0bc833895edf533f1ede8dba59f02c153503f3e36041416074fb06afaf00c832d698d0e9651be79cfdf5554193f7
6
+ metadata.gz: 0a07b4439e31076625abbe225c71d0d04b47481c6246eeccbd9fdbb7d10b733b177800d80d4fb55fbfbba6de96e262e9ad02c041f777017329e1805222e6b433
7
+ data.tar.gz: 4696addf770e5f082f31f7941bd4fd60dda49c66ace93e945a530a14198ae6770a0143e449404fe935d0453b9f1ed3e77b13418b8d33259128004be07b15e7da
data/Dockerfile ADDED
@@ -0,0 +1,18 @@
1
+ ARG RUBY_VERSION=3.4.3
2
+
3
+ FROM ruby:${RUBY_VERSION}-slim
4
+
5
+ RUN apt update && \
6
+ apt install -y --no-install-recommends \
7
+ build-essential \
8
+ libyaml-dev \
9
+ git \
10
+ curl
11
+
12
+ WORKDIR /workspace
13
+
14
+ COPY . .
15
+
16
+ RUN bundle install
17
+
18
+ CMD ["bundle", "exec", "rspec"]
data/Gemfile CHANGED
@@ -6,13 +6,13 @@ source 'https://rubygems.org'
6
6
  gemspec
7
7
 
8
8
  group :development, :test do
9
- gem 'bundle-audit', '~> 0.1.0'
9
+ gem 'bundler-audit', '~> 0.9.0'
10
+ gem 'debug', '~> 1.10'
10
11
  gem 'dry-struct', '~> 1.0'
11
- gem 'fasterer', '~> 0.10.0'
12
- gem 'pry-byebug', '~> 3.9', platform: :mri
12
+ gem 'fasterer', '~> 0.11.0'
13
13
  gem 'rake', '~> 13.0'
14
- gem 'rspec', '~> 3.9'
15
- gem 'rubocop', '1.33'
16
- gem 'rubocop-performance', '1.14.3'
17
- gem 'rubocop-rspec', '2.12.1'
14
+ gem 'rspec', '~> 3.10'
15
+ gem 'rubocop', '~> 1.75'
16
+ gem 'rubocop-performance', '~> 1.25'
17
+ gem 'rubocop-rspec', '~> 3.6'
18
18
  end
@@ -0,0 +1,11 @@
1
+ services:
2
+ workspace:
3
+ build:
4
+ context: .
5
+ dockerfile: Dockerfile
6
+ command: sleep infinity
7
+ volumes:
8
+ - .:/workspace
9
+ env_file:
10
+ - path: .env
11
+ required: false
@@ -16,7 +16,7 @@
16
16
 
17
17
  require 'active_support/concern'
18
18
  require 'snfoil/context'
19
- require_relative './setup_context'
19
+ require_relative 'setup_context'
20
20
 
21
21
  module SnFoil
22
22
  module CRUD
@@ -15,7 +15,7 @@
15
15
  # limitations under the License.
16
16
 
17
17
  require 'active_support/concern'
18
- require_relative './setup_context'
18
+ require_relative 'setup_context'
19
19
 
20
20
  module SnFoil
21
21
  module CRUD
@@ -15,7 +15,7 @@
15
15
  # limitations under the License.
16
16
 
17
17
  require 'active_support/concern'
18
- require_relative './change_context'
18
+ require_relative 'change_context'
19
19
 
20
20
  module SnFoil
21
21
  module CRUD
@@ -15,8 +15,8 @@
15
15
  # limitations under the License.
16
16
 
17
17
  require 'active_support/concern'
18
- require_relative './setup_context'
19
- require_relative './change_context'
18
+ require_relative 'setup_context'
19
+ require_relative 'change_context'
20
20
 
21
21
  module SnFoil
22
22
  module CRUD
@@ -15,7 +15,7 @@
15
15
  # limitations under the License.
16
16
 
17
17
  require 'active_support/concern'
18
- require_relative './change_context'
18
+ require_relative 'change_context'
19
19
 
20
20
  module SnFoil
21
21
  module CRUD
@@ -15,7 +15,7 @@
15
15
  # limitations under the License.
16
16
 
17
17
  require 'active_support/concern'
18
- require_relative './setup_context'
18
+ require_relative 'setup_context'
19
19
 
20
20
  module SnFoil
21
21
  module CRUD
@@ -15,8 +15,8 @@
15
15
  # limitations under the License.
16
16
 
17
17
  require 'active_support/concern'
18
- require_relative './setup_context'
19
- require_relative './change_context'
18
+ require_relative 'setup_context'
19
+ require_relative 'change_context'
20
20
 
21
21
  module SnFoil
22
22
  module CRUD
@@ -15,5 +15,5 @@
15
15
  # limitations under the License.
16
16
 
17
17
  module SnFoil
18
- VERSION = '1.1.1'
18
+ VERSION = '1.1.2'
19
19
  end
data/snfoil.gemspec CHANGED
@@ -5,14 +5,14 @@ require_relative 'lib/snfoil/version'
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'snfoil'
7
7
  spec.version = SnFoil::VERSION
8
- spec.authors = ['Matthew Howes', 'Danny Murphy', 'Cliff Campbell']
9
- spec.email = ['howeszy@gmail.com', 'dmurph24@gmail.com', 'cliffcampbell@hey.com']
8
+ spec.authors = ['Matthew Howes', 'Cliff Campbell']
9
+ spec.email = ['matt.howes@limitedeffort.io', 'cliffcampbell@hey.com']
10
10
 
11
11
  spec.summary = 'A Toolbox of Context Behaviors'
12
12
  spec.description = 'A collection of SnFoil gems and additional helper classes'
13
13
  spec.homepage = 'https://github.com/limited-effort/snfoil'
14
14
  spec.license = 'Apache-2.0'
15
- spec.required_ruby_version = '>= 2.6'
15
+ spec.required_ruby_version = '>=3.0'
16
16
 
17
17
  spec.metadata['homepage_uri'] = spec.homepage
18
18
  spec.metadata['source_code_uri'] = spec.homepage
metadata CHANGED
@@ -1,16 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: snfoil
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew Howes
8
- - Danny Murphy
9
8
  - Cliff Campbell
10
- autorequire:
11
9
  bindir: exe
12
10
  cert_chain: []
13
- date: 2022-11-15 00:00:00.000000000 Z
11
+ date: 1980-01-02 00:00:00.000000000 Z
14
12
  dependencies:
15
13
  - !ruby/object:Gem::Dependency
16
14
  name: activesupport
@@ -116,8 +114,7 @@ dependencies:
116
114
  version: '2.0'
117
115
  description: A collection of SnFoil gems and additional helper classes
118
116
  email:
119
- - howeszy@gmail.com
120
- - dmurph24@gmail.com
117
+ - matt.howes@limitedeffort.io
121
118
  - cliffcampbell@hey.com
122
119
  executables: []
123
120
  extensions: []
@@ -125,10 +122,12 @@ extra_rdoc_files: []
125
122
  files:
126
123
  - CHANGELOG.md
127
124
  - CODE_OF_CONDUCT.md
125
+ - Dockerfile
128
126
  - Gemfile
129
127
  - LICENSE.txt
130
128
  - README.md
131
129
  - TODO.md
130
+ - docker-compose.yaml
132
131
  - docs/build-context.md
133
132
  - docs/create-context.md
134
133
  - docs/destroy-context.md
@@ -157,7 +156,6 @@ metadata:
157
156
  source_code_uri: https://github.com/limited-effort/snfoil
158
157
  changelog_uri: https://github.com/limited-effort/snfoil/blob/main/CHANGELOG.md
159
158
  rubygems_mfa_required: 'true'
160
- post_install_message:
161
159
  rdoc_options: []
162
160
  require_paths:
163
161
  - lib
@@ -165,15 +163,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
165
163
  requirements:
166
164
  - - ">="
167
165
  - !ruby/object:Gem::Version
168
- version: '2.6'
166
+ version: '3.0'
169
167
  required_rubygems_version: !ruby/object:Gem::Requirement
170
168
  requirements:
171
169
  - - ">="
172
170
  - !ruby/object:Gem::Version
173
171
  version: '0'
174
172
  requirements: []
175
- rubygems_version: 3.1.6
176
- signing_key:
173
+ rubygems_version: 3.6.7
177
174
  specification_version: 4
178
175
  summary: A Toolbox of Context Behaviors
179
176
  test_files: []