boring_presenters 0.1.3 → 0.1.4
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 +5 -5
- data/.github/workflows/test.yml +26 -0
- data/.gitignore +2 -0
- data/Gemfile.lock +16 -16
- data/README.md +9 -1
- data/boring_presenters.gemspec +2 -2
- data/lib/boring_presenters/presenter.rb +2 -0
- data/lib/boring_presenters/version.rb +1 -1
- metadata +7 -8
- data/.travis.yml +0 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 6577b8d247e48b58772f5e56b49164c4f0c3e5fc4ead35729cff30712e06c84b
|
|
4
|
+
data.tar.gz: 5e45f6a9f034d69c1c2232a6e6691d37fe5e792882e682608b320db58285e4e9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cb5bfc337726acf46e9c7c5d5247169c2d1f0e11ee74395e25ddfedb73ebe239fc3ccfa7079a591069e20243af5f436baf646c9da0612c5b7c0a617b1bb8e52e
|
|
7
|
+
data.tar.gz: d178e61756ac5f5f5008b1cc53e4d1a4b78697cc96ef8051d227efb5a37710fc5ef2a1c7b4272fc6618df7179f4ee509155db6f5abf7fa6c424a4e093c9c1289
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
name: Test & Lint
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [main]
|
|
6
|
+
pull_request:
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
test:
|
|
10
|
+
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
|
|
13
|
+
strategy:
|
|
14
|
+
matrix:
|
|
15
|
+
ruby-version: ['3.1', '3.0', '2.7']
|
|
16
|
+
|
|
17
|
+
steps:
|
|
18
|
+
- uses: actions/checkout@v3
|
|
19
|
+
- name: Set up Ruby
|
|
20
|
+
uses: ruby/setup-ruby@359bebbc29cbe6c87da6bc9ea3bc930432750108
|
|
21
|
+
with:
|
|
22
|
+
ruby-version: ${{ matrix.ruby-version }}
|
|
23
|
+
- name: Install dependencies
|
|
24
|
+
run: bundle install
|
|
25
|
+
- name: Run tests
|
|
26
|
+
run: bundle exec rake
|
data/.gitignore
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
boring_presenters (0.1.
|
|
4
|
+
boring_presenters (0.1.4)
|
|
5
5
|
|
|
6
6
|
GEM
|
|
7
7
|
remote: https://rubygems.org/
|
|
8
8
|
specs:
|
|
9
|
-
diff-lcs (1.
|
|
9
|
+
diff-lcs (1.5.0)
|
|
10
10
|
rake (10.5.0)
|
|
11
|
-
rspec (3.
|
|
12
|
-
rspec-core (~> 3.
|
|
13
|
-
rspec-expectations (~> 3.
|
|
14
|
-
rspec-mocks (~> 3.
|
|
15
|
-
rspec-core (3.
|
|
16
|
-
rspec-support (~> 3.
|
|
17
|
-
rspec-expectations (3.
|
|
11
|
+
rspec (3.12.0)
|
|
12
|
+
rspec-core (~> 3.12.0)
|
|
13
|
+
rspec-expectations (~> 3.12.0)
|
|
14
|
+
rspec-mocks (~> 3.12.0)
|
|
15
|
+
rspec-core (3.12.1)
|
|
16
|
+
rspec-support (~> 3.12.0)
|
|
17
|
+
rspec-expectations (3.12.2)
|
|
18
18
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
19
|
-
rspec-support (~> 3.
|
|
20
|
-
rspec-mocks (3.
|
|
19
|
+
rspec-support (~> 3.12.0)
|
|
20
|
+
rspec-mocks (3.12.3)
|
|
21
21
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
22
|
-
rspec-support (~> 3.
|
|
23
|
-
rspec-support (3.
|
|
22
|
+
rspec-support (~> 3.12.0)
|
|
23
|
+
rspec-support (3.12.0)
|
|
24
24
|
|
|
25
25
|
PLATFORMS
|
|
26
|
-
|
|
26
|
+
universal-darwin-22
|
|
27
27
|
|
|
28
28
|
DEPENDENCIES
|
|
29
29
|
boring_presenters!
|
|
30
|
-
bundler (~>
|
|
30
|
+
bundler (~> 2)
|
|
31
31
|
rake (~> 10.0)
|
|
32
32
|
rspec (~> 3.0)
|
|
33
33
|
|
|
34
34
|
BUNDLED WITH
|
|
35
|
-
|
|
35
|
+
2.3.9
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Boring
|
|
2
2
|
## Because your presentation layer shouldn't be interesting
|
|
3
3
|
|
|
4
|
-
[](https://badge.fury.io/rb/boring_presenters) [
|
|
4
|
+
[](https://badge.fury.io/rb/boring_presenters) [[](http://inch-ci.org/github/apsislabs/boring)
|
|
5
5
|
|
|
6
6
|
**Note:** while we're actively using `boring` in production, it is still actively under development, and you should expect breaking changes.
|
|
7
7
|
|
|
@@ -68,3 +68,11 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/wkirby
|
|
|
68
68
|
## License
|
|
69
69
|
|
|
70
70
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
# Built by Apsis
|
|
75
|
+
|
|
76
|
+
[](https://www.apsis.io)
|
|
77
|
+
|
|
78
|
+
`boring` was built by Apsis Labs. We love sharing what we build! Check out our [other libraries on Github](https://github.com/apsislabs), and if you like our work you can [hire us](https://www.apsis.io/work-with-us/) to build your vision.
|
data/boring_presenters.gemspec
CHANGED
|
@@ -18,9 +18,9 @@ Gem::Specification.new do |spec|
|
|
|
18
18
|
spec.bindir = 'exe'
|
|
19
19
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
20
20
|
spec.require_paths = ['lib']
|
|
21
|
-
spec.required_ruby_version = '
|
|
21
|
+
spec.required_ruby_version = '> 2.1'
|
|
22
22
|
|
|
23
|
-
spec.add_development_dependency 'bundler', '~>
|
|
23
|
+
spec.add_development_dependency 'bundler', '~> 2'
|
|
24
24
|
spec.add_development_dependency 'rake', '~> 10.0'
|
|
25
25
|
spec.add_development_dependency 'rspec', '~> 3.0'
|
|
26
26
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: boring_presenters
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Wyatt Kirby
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2023-02-03 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -17,14 +17,14 @@ dependencies:
|
|
|
17
17
|
requirements:
|
|
18
18
|
- - "~>"
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: '
|
|
20
|
+
version: '2'
|
|
21
21
|
type: :development
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
25
|
- - "~>"
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: '
|
|
27
|
+
version: '2'
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
29
29
|
name: rake
|
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -61,9 +61,9 @@ executables: []
|
|
|
61
61
|
extensions: []
|
|
62
62
|
extra_rdoc_files: []
|
|
63
63
|
files:
|
|
64
|
+
- ".github/workflows/test.yml"
|
|
64
65
|
- ".gitignore"
|
|
65
66
|
- ".rspec"
|
|
66
|
-
- ".travis.yml"
|
|
67
67
|
- Gemfile
|
|
68
68
|
- Gemfile.lock
|
|
69
69
|
- LICENSE.txt
|
|
@@ -86,7 +86,7 @@ require_paths:
|
|
|
86
86
|
- lib
|
|
87
87
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
88
88
|
requirements:
|
|
89
|
-
- - "
|
|
89
|
+
- - ">"
|
|
90
90
|
- !ruby/object:Gem::Version
|
|
91
91
|
version: '2.1'
|
|
92
92
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
@@ -95,8 +95,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
96
|
version: '0'
|
|
97
97
|
requirements: []
|
|
98
|
-
|
|
99
|
-
rubygems_version: 2.6.13
|
|
98
|
+
rubygems_version: 3.0.3.1
|
|
100
99
|
signing_key:
|
|
101
100
|
specification_version: 4
|
|
102
101
|
summary: A boring presentation layer.
|