pakyow 1.0.0.rc5 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -26
- data/README.md +69 -96
- data/lib/pakyow/version.rb +1 -1
- metadata +28 -29
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: acb9e6aaa7b416a1a549777f618c0f064f13aaa5f6aeb3b6d8dbbfa37586d76a
|
4
|
+
data.tar.gz: 10490dfd50ea26917eddc5c05e2c67e3d65224790fd81b63ccdc1233ff8b594e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bee3420fb62c1f7d5f0d856d6a7038a3e552321ed91deb782135dd2c8b3089dfa1a30abe420476d6b186994b7b1380b05080e239bdbb6be45cca202e502b08ae
|
7
|
+
data.tar.gz: b4f0bb6062ad0686e02e7ab8a6ffb2340e5d5805c2228b5428a4025f99dc8ada7ebf15c1d67d947e4126fda4cfb6216956debfb35ab1bb64a7a96c96691284c9
|
data/CHANGELOG.md
CHANGED
@@ -1,28 +1,5 @@
|
|
1
|
-
#
|
1
|
+
# UNRELEASED
|
2
2
|
|
3
|
-
|
4
|
-
* Uses dotenv for config management
|
5
|
-
* Breaks middleware into pluggable pieces
|
6
|
-
* Dynamically sets app name in config
|
7
|
-
* Creates a random session secret
|
8
|
-
* Updates Ring to 0.2.4
|
9
|
-
* Evaluates app template as erb
|
10
|
-
* Improves CLI, including new `version` command
|
11
|
-
* Moves everything into the Pakyow namespace
|
12
|
-
* Adds ASCII art to `server` command \o/
|
3
|
+
# 1.0
|
13
4
|
|
14
|
-
|
15
|
-
|
16
|
-
* Updates Ring to latest in generator
|
17
|
-
|
18
|
-
# 0.10.01 / 2015-10-19
|
19
|
-
|
20
|
-
* Use semantic versioning for Pakyow in generated Gemfile
|
21
|
-
|
22
|
-
# 0.10.0 / 2015-10-19
|
23
|
-
|
24
|
-
* Rename `app.rb` to `setup/app.rb`
|
25
|
-
* Adds Pakyow icons to generated app
|
26
|
-
* Adds Ring to generated app
|
27
|
-
* Updates Pakyow CSS in generated app
|
28
|
-
* Adds session middleware to generated app
|
5
|
+
* Hello, Web
|
data/README.md
CHANGED
@@ -1,143 +1,116 @@
|
|
1
|
-
|
2
|
-
[travis]: https://travis-ci.org/pakyow/pakyow
|
1
|
+
# <img src="https://pakyow.com/marketing/logo.svg" height="42" alt="Pakyow">
|
3
2
|
|
4
|
-
|
3
|
+
**Hello, Web.** Pakyow is a web framework that helps you turn your html into a complete web app. We set out to design a better way to build for the web. This is the result—a full stack of open-source frameworks that offers a simpler, design-first approach. We want to help you do more with what you already know, whether you're just starting out or have been building for the web for years.
|
5
4
|
|
6
|
-
|
5
|
+
Here's how it works:
|
7
6
|
|
8
|
-
|
9
|
-
without writing any client-side code. Build modern server-driven applications that don't
|
10
|
-
compromise on speed or usability.
|
7
|
+
1. Prototype: Create an in-browser prototype without writing any backend code. Use composable, plain-html view templates to define how your app looks and behaves, then sprinkle data bindings on top to describe the semantic intent behind your interface.
|
11
8
|
|
12
|
-
|
9
|
+
2. Reflect: While you prototype, Pakyow reflects on your views to bootstrap a complete backend to make your interface work—including routes, data models, presenters, and more. The reflection integrates seamlessly with your frontend, giving you a solid foundation to continue building on.
|
13
10
|
|
14
|
-
|
15
|
-
Works out of the box.
|
11
|
+
3. Iterate: With the boilerplate taken care of, focus on building what makes your app unique. Any custom code you add runs right alongside the reflection, giving you flexibility where you need it and a secure, standards-based fallback for everything else.
|
16
12
|
|
17
|
-
|
13
|
+
This is what a Pakyow view template looks like:
|
18
14
|
|
19
|
-
|
20
|
-
|
15
|
+
```html
|
16
|
+
<form binding="message">
|
17
|
+
<input binding="content" type="text">
|
18
|
+
<input type="submit">
|
19
|
+
</form>
|
21
20
|
|
22
|
-
|
21
|
+
<article binding="message">
|
22
|
+
<p binding="content">
|
23
|
+
content goes here
|
24
|
+
</p>
|
25
|
+
</article>
|
23
26
|
|
24
|
-
|
25
|
-
|
27
|
+
<p binding="message" version="empty">
|
28
|
+
nothing here yet
|
29
|
+
</p>
|
30
|
+
```
|
26
31
|
|
27
|
-
|
28
|
-
|
29
|
-
[![Gem Version](https://badge.fury.io/rb/pakyow.svg)][gem]
|
30
|
-
[![Build Status](https://travis-ci.org/pakyow/pakyow.svg?branch=master)][travis]
|
31
|
-
|
32
|
-
---
|
33
|
-
|
34
|
-
# Getting Started
|
32
|
+
Pakyow can attach quite a bit of default behavior to an app just based on this template.
|
35
33
|
|
36
|
-
|
34
|
+
* [Get an overview in the 5-minute app guide →](https://pakyow.com/docs/hello/example)
|
37
35
|
|
38
|
-
|
36
|
+
## Designed for the designers.
|
39
37
|
|
40
|
-
|
38
|
+
Pakyow lets designers play an active part in building the things they design. Interfaces are built right in the web browser using HTML and CSS, and then extended to become a complete application.
|
41
39
|
|
42
|
-
|
40
|
+
## Live views without breaking a sweat.
|
43
41
|
|
44
|
-
|
42
|
+
Pakyow UIs stay in sync with server-side state right out of the box. There's nothing new to learn and no frontend framework to adopt. The UI is rendered on the server like in a traditional stack, but once presented in a browser it automatically reflects new changes without a page refresh.
|
45
43
|
|
46
|
-
|
44
|
+
## Backed by a complete framework.
|
47
45
|
|
48
|
-
|
46
|
+
Pakyow includes everything you need to create a complete web app or website. The core primitives that Pakyow uses internally are available to you as you need them. Pakyow's backend, built on Ruby, is designed to make custom code fun to write and easier to maintain long term.
|
49
47
|
|
50
|
-
|
48
|
+
## Responsibly Open-Source
|
51
49
|
|
52
|
-
-
|
53
|
-
- [Follow the warmup](https://pakyow.org/docs/warmup) to build and deploy your first project.
|
54
|
-
- [Browse the docs](https://pakyow.org/docs) to learn more about presentation, routing, realtime channels, and more.
|
55
|
-
- [Check out the code](https://github.com/pakyow/pakyow) on Github.
|
50
|
+
Pakyow is released free and open-source under the terms of the LGPLv3 license. We offer paid team subscriptions that remove some of the restrictions of the LGPL. Team subscriptions also include access to expert help for you and your team through a private support channel.
|
56
51
|
|
57
|
-
|
52
|
+
Giving Pakyow away for free and charging for the extra bits on top lets us embrace the open-source ethos in a responsible and sustainable way. Pakyow is our full-time job—we're in this for the long haul.
|
58
53
|
|
59
|
-
|
60
|
-
- [Participate in chat](https://gitter.im/pakyow/chat)
|
61
|
-
- [Join the forums](http://forums.pakyow.org/)
|
62
|
-
- [Work on a starter issue](https://github.com/pakyow/pakyow/labels/Starter)
|
63
|
-
- [Report problems](https://github.com/pakyow/pakyow/issues)
|
64
|
-
- [Tell your friends](https://twitter.com/share?text=Pakyow,%20build%20modern%20apps%20that%20don%27t%20break%20the%20web&hashtags=pakyow&url=https://pakyow.org)
|
54
|
+
* [Learn more about subscriptions →](https://pakyow.com/pricing/)
|
65
55
|
|
66
|
-
|
56
|
+
## Getting Help
|
67
57
|
|
68
|
-
Pakyow
|
58
|
+
Have a question about Pakyow? Connect with other users in the [community](https://pakyow.com/community/). Encountered a bug? Report it on the [issue tracker](https://github.com/pakyow/pakyow/issues/) and we'll hep you out. Find a security concern? **Don't report it publicly. Email security@pakyow.com and we'll work with you to confirm the issue, establish a fix, and release a patch.**
|
69
59
|
|
70
|
-
|
60
|
+
## Technical Overview
|
71
61
|
|
72
|
-
|
62
|
+
Pakyow apps run almost entirely on the server side, with a minimal client-side framework to support things like live view updates and components. Everything on the server is written in [Ruby](https://www.ruby-lang.org/), a beautifully designed programming language optimized for the happiness of beginners and experienced developers alike!
|
73
63
|
|
74
|
-
Pakyow is
|
75
|
-
framework. Here's a list of the libraries that Pakyow ships with by default:
|
64
|
+
Pakyow is implemented across several independent frameworks, each released as its own gem. This modularity lets us provide a helpful set of default behavior while providing flexibility for advanced users to decide what behavior they want to run in their projects. Pakyow's default set of frameworks can be found in the `pakyow/pakyow` repository:
|
76
65
|
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
66
|
+
* Routing: Controllers, Input Verification, and Error Handling
|
67
|
+
* Presenter: View Composition, Data Presentation
|
68
|
+
* Assets: Compiling Styles, JavaScript, and Images
|
69
|
+
* Realtime: Pub/Sub Channels via WebSockets
|
70
|
+
* UI: Server-Side Integration with Web Browsers
|
71
|
+
* JS: Client-Side Presentation, UI Components
|
72
|
+
* Data: Persistence Layer, Query Subscriptions
|
73
|
+
* Mailer: Sending Email, Delivering Views
|
74
|
+
* Forms: Rendering Forms, Processing Submissions
|
75
|
+
* Reflection: Generates View Reflections
|
76
|
+
* Support: Supporting Code, Utilities
|
85
77
|
|
86
|
-
|
78
|
+
Foundational concepts used across frameworks are defined in the main `pakyow-core` gem, including:
|
87
79
|
|
88
|
-
|
89
|
-
- Slim: Adds support for writing view templates in Slim.
|
90
|
-
- Haml: Adds support for writing view templates in Haml.
|
91
|
-
- Bindr: Introduces the concept of recursive data binding.
|
80
|
+
**Environment:** The master process that runs one or more mounted apps. Most of the time you'll be mounting an instance of `Pakyow::App`, however you can mount any object that responds to `call`. Note that the environment is the only global object that exists in the framework.
|
92
81
|
|
93
|
-
|
82
|
+
* [Read more about environment →](https://github.com/pakyow/pakyow/blob/master/pakyow-core/lib/pakyow/environment.rb)
|
94
83
|
|
95
|
-
|
84
|
+
**Application:** An endpoint mounted at a specific path within the environment. Each application defines various aspects, including controllers, presenters, and data sources. These aspects are used to fulfill requests that the environment directs to the application.
|
96
85
|
|
97
|
-
|
98
|
-
Pakyow ecosystem. It glues everything together. Read below for a summary.
|
86
|
+
* [Read more about application →](https://github.com/pakyow/pakyow/blob/master/pakyow-core/lib/pakyow/application.rb)
|
99
87
|
|
100
|
-
|
88
|
+
**Connection:** Contains all of the knowledge about the current request lifecycle, including headers, body, status, etc. It also contains a key/value store for passing request state between frameworks. The environment has a connection object used for every request. When the connection is directed to an application, the application can wrap the environment connection with its own behavior.
|
101
89
|
|
102
|
-
|
103
|
-
apps) with the consistency of a single environment.
|
90
|
+
* [Read more about connection →](https://github.com/pakyow/pakyow/blob/master/pakyow-core/lib/pakyow/connection.rb)
|
104
91
|
|
105
|
-
|
106
|
-
|
107
|
-
## Request Logger
|
108
|
-
|
109
|
-
Adds request-level logging, with a human-friendly formatter for development and
|
110
|
-
a logfmt formatter for production environments.
|
111
|
-
|
112
|
-
[Browse the source »](https://github.com/pakyow/pakyow/blob/environment/lib/pakyow/logger/request_logger.rb)
|
113
|
-
|
114
|
-
## Default Middleware
|
92
|
+
---
|
115
93
|
|
116
|
-
|
117
|
-
including request path normalization and json body parsing.
|
94
|
+
There's a lot more to the main gem, including process management for development environments, configuration, and integrations. We encourage you to walk through the code yourself--it's a great way to learn!
|
118
95
|
|
119
|
-
[Browse the
|
96
|
+
* [Browse the code →](https://github.com/pakyow/pakyow/tree/master/lib/pakyow)
|
120
97
|
|
121
|
-
|
98
|
+
You might also be interested in `pakyow/design`, which applies design-first principles to the design of the framework itself. It's a great way to see how all of the features in a Pakyow app work together.
|
122
99
|
|
123
|
-
|
100
|
+
* [Browse pakyow/design →](https://github.com/pakyow/design)
|
124
101
|
|
125
|
-
|
102
|
+
## Common Patterns
|
126
103
|
|
127
|
-
|
104
|
+
You'll find several implementation patterns throughout the codebase, including:
|
128
105
|
|
129
|
-
|
106
|
+
### Pipelines
|
130
107
|
|
131
|
-
|
108
|
+
Pipelines allow one or more actions to be defined and then called in order. Each action can modify the state and/or halt execution of the pipeline, at which point the final state is returned. This pattern makes it much easier to understand the path a request takes through the system. For example, Pakyow::Controller is implemented using pipelines.
|
132
109
|
|
133
|
-
|
110
|
+
* [Read more about pipelines →](https://github.com/pakyow/pakyow/blob/master/pakyow-support/lib/pakyow/support/pipelined.rb)
|
134
111
|
|
135
|
-
|
136
|
-
[here](https://github.com/pakyow/pakyow/tree/environment/docs). We bundle the
|
137
|
-
docs with the code so that they evolve together.
|
112
|
+
### Behavior Extensions
|
138
113
|
|
139
|
-
|
114
|
+
Throughout the framework you'll find extension modules in a `behavior` directory. When included, each behavior module extends the including object with its defined behavior. This pattern lets us isolate complex behavior and use composition to define how a particular object in the system should behave. For example, `Pakyow::App` includes several behavior extensions, such as [error handling](https://github.com/pakyow/pakyow/blob/master/pakyow-core/lib/pakyow/core/controller/behavior/error_handling.rb).
|
140
115
|
|
141
|
-
|
142
|
-
[here](https://github.com/pakyow/pakyow/tree/environment/example). We try and
|
143
|
-
keep it current to reflect the entire feature-set across the framework.
|
116
|
+
* [Read more about extensions →](https://github.com/pakyow/pakyow/blob/master/pakyow-support/lib/pakyow/support/extension.rb)
|
data/lib/pakyow/version.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pakyow
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bryan Powell
|
8
|
-
- Bret Young
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2019-07-
|
11
|
+
date: 2019-07-16 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: pakyow-assets
|
@@ -17,156 +16,156 @@ dependencies:
|
|
17
16
|
requirements:
|
18
17
|
- - '='
|
19
18
|
- !ruby/object:Gem::Version
|
20
|
-
version: 1.0.0
|
19
|
+
version: 1.0.0
|
21
20
|
type: :runtime
|
22
21
|
prerelease: false
|
23
22
|
version_requirements: !ruby/object:Gem::Requirement
|
24
23
|
requirements:
|
25
24
|
- - '='
|
26
25
|
- !ruby/object:Gem::Version
|
27
|
-
version: 1.0.0
|
26
|
+
version: 1.0.0
|
28
27
|
- !ruby/object:Gem::Dependency
|
29
28
|
name: pakyow-core
|
30
29
|
requirement: !ruby/object:Gem::Requirement
|
31
30
|
requirements:
|
32
31
|
- - '='
|
33
32
|
- !ruby/object:Gem::Version
|
34
|
-
version: 1.0.0
|
33
|
+
version: 1.0.0
|
35
34
|
type: :runtime
|
36
35
|
prerelease: false
|
37
36
|
version_requirements: !ruby/object:Gem::Requirement
|
38
37
|
requirements:
|
39
38
|
- - '='
|
40
39
|
- !ruby/object:Gem::Version
|
41
|
-
version: 1.0.0
|
40
|
+
version: 1.0.0
|
42
41
|
- !ruby/object:Gem::Dependency
|
43
42
|
name: pakyow-data
|
44
43
|
requirement: !ruby/object:Gem::Requirement
|
45
44
|
requirements:
|
46
45
|
- - '='
|
47
46
|
- !ruby/object:Gem::Version
|
48
|
-
version: 1.0.0
|
47
|
+
version: 1.0.0
|
49
48
|
type: :runtime
|
50
49
|
prerelease: false
|
51
50
|
version_requirements: !ruby/object:Gem::Requirement
|
52
51
|
requirements:
|
53
52
|
- - '='
|
54
53
|
- !ruby/object:Gem::Version
|
55
|
-
version: 1.0.0
|
54
|
+
version: 1.0.0
|
56
55
|
- !ruby/object:Gem::Dependency
|
57
56
|
name: pakyow-form
|
58
57
|
requirement: !ruby/object:Gem::Requirement
|
59
58
|
requirements:
|
60
59
|
- - '='
|
61
60
|
- !ruby/object:Gem::Version
|
62
|
-
version: 1.0.0
|
61
|
+
version: 1.0.0
|
63
62
|
type: :runtime
|
64
63
|
prerelease: false
|
65
64
|
version_requirements: !ruby/object:Gem::Requirement
|
66
65
|
requirements:
|
67
66
|
- - '='
|
68
67
|
- !ruby/object:Gem::Version
|
69
|
-
version: 1.0.0
|
68
|
+
version: 1.0.0
|
70
69
|
- !ruby/object:Gem::Dependency
|
71
70
|
name: pakyow-mailer
|
72
71
|
requirement: !ruby/object:Gem::Requirement
|
73
72
|
requirements:
|
74
73
|
- - '='
|
75
74
|
- !ruby/object:Gem::Version
|
76
|
-
version: 1.0.0
|
75
|
+
version: 1.0.0
|
77
76
|
type: :runtime
|
78
77
|
prerelease: false
|
79
78
|
version_requirements: !ruby/object:Gem::Requirement
|
80
79
|
requirements:
|
81
80
|
- - '='
|
82
81
|
- !ruby/object:Gem::Version
|
83
|
-
version: 1.0.0
|
82
|
+
version: 1.0.0
|
84
83
|
- !ruby/object:Gem::Dependency
|
85
84
|
name: pakyow-presenter
|
86
85
|
requirement: !ruby/object:Gem::Requirement
|
87
86
|
requirements:
|
88
87
|
- - '='
|
89
88
|
- !ruby/object:Gem::Version
|
90
|
-
version: 1.0.0
|
89
|
+
version: 1.0.0
|
91
90
|
type: :runtime
|
92
91
|
prerelease: false
|
93
92
|
version_requirements: !ruby/object:Gem::Requirement
|
94
93
|
requirements:
|
95
94
|
- - '='
|
96
95
|
- !ruby/object:Gem::Version
|
97
|
-
version: 1.0.0
|
96
|
+
version: 1.0.0
|
98
97
|
- !ruby/object:Gem::Dependency
|
99
98
|
name: pakyow-realtime
|
100
99
|
requirement: !ruby/object:Gem::Requirement
|
101
100
|
requirements:
|
102
101
|
- - '='
|
103
102
|
- !ruby/object:Gem::Version
|
104
|
-
version: 1.0.0
|
103
|
+
version: 1.0.0
|
105
104
|
type: :runtime
|
106
105
|
prerelease: false
|
107
106
|
version_requirements: !ruby/object:Gem::Requirement
|
108
107
|
requirements:
|
109
108
|
- - '='
|
110
109
|
- !ruby/object:Gem::Version
|
111
|
-
version: 1.0.0
|
110
|
+
version: 1.0.0
|
112
111
|
- !ruby/object:Gem::Dependency
|
113
112
|
name: pakyow-reflection
|
114
113
|
requirement: !ruby/object:Gem::Requirement
|
115
114
|
requirements:
|
116
115
|
- - '='
|
117
116
|
- !ruby/object:Gem::Version
|
118
|
-
version: 1.0.0
|
117
|
+
version: 1.0.0
|
119
118
|
type: :runtime
|
120
119
|
prerelease: false
|
121
120
|
version_requirements: !ruby/object:Gem::Requirement
|
122
121
|
requirements:
|
123
122
|
- - '='
|
124
123
|
- !ruby/object:Gem::Version
|
125
|
-
version: 1.0.0
|
124
|
+
version: 1.0.0
|
126
125
|
- !ruby/object:Gem::Dependency
|
127
126
|
name: pakyow-routing
|
128
127
|
requirement: !ruby/object:Gem::Requirement
|
129
128
|
requirements:
|
130
129
|
- - '='
|
131
130
|
- !ruby/object:Gem::Version
|
132
|
-
version: 1.0.0
|
131
|
+
version: 1.0.0
|
133
132
|
type: :runtime
|
134
133
|
prerelease: false
|
135
134
|
version_requirements: !ruby/object:Gem::Requirement
|
136
135
|
requirements:
|
137
136
|
- - '='
|
138
137
|
- !ruby/object:Gem::Version
|
139
|
-
version: 1.0.0
|
138
|
+
version: 1.0.0
|
140
139
|
- !ruby/object:Gem::Dependency
|
141
140
|
name: pakyow-support
|
142
141
|
requirement: !ruby/object:Gem::Requirement
|
143
142
|
requirements:
|
144
143
|
- - '='
|
145
144
|
- !ruby/object:Gem::Version
|
146
|
-
version: 1.0.0
|
145
|
+
version: 1.0.0
|
147
146
|
type: :runtime
|
148
147
|
prerelease: false
|
149
148
|
version_requirements: !ruby/object:Gem::Requirement
|
150
149
|
requirements:
|
151
150
|
- - '='
|
152
151
|
- !ruby/object:Gem::Version
|
153
|
-
version: 1.0.0
|
152
|
+
version: 1.0.0
|
154
153
|
- !ruby/object:Gem::Dependency
|
155
154
|
name: pakyow-ui
|
156
155
|
requirement: !ruby/object:Gem::Requirement
|
157
156
|
requirements:
|
158
157
|
- - '='
|
159
158
|
- !ruby/object:Gem::Version
|
160
|
-
version: 1.0.0
|
159
|
+
version: 1.0.0
|
161
160
|
type: :runtime
|
162
161
|
prerelease: false
|
163
162
|
version_requirements: !ruby/object:Gem::Requirement
|
164
163
|
requirements:
|
165
164
|
- - '='
|
166
165
|
- !ruby/object:Gem::Version
|
167
|
-
version: 1.0.0
|
166
|
+
version: 1.0.0
|
168
167
|
description: Modern web framework for Ruby
|
169
|
-
email: bryan@
|
168
|
+
email: bryan@bryanp.org
|
170
169
|
executables: []
|
171
170
|
extensions: []
|
172
171
|
extra_rdoc_files: []
|
@@ -176,7 +175,7 @@ files:
|
|
176
175
|
- README.md
|
177
176
|
- lib/pakyow/all.rb
|
178
177
|
- lib/pakyow/version.rb
|
179
|
-
homepage: https://pakyow.
|
178
|
+
homepage: https://pakyow.com
|
180
179
|
licenses:
|
181
180
|
- LGPL-3.0
|
182
181
|
metadata: {}
|
@@ -191,9 +190,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
191
190
|
version: 2.5.0
|
192
191
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
193
192
|
requirements:
|
194
|
-
- - "
|
193
|
+
- - ">="
|
195
194
|
- !ruby/object:Gem::Version
|
196
|
-
version:
|
195
|
+
version: '0'
|
197
196
|
requirements: []
|
198
197
|
rubygems_version: 3.0.3
|
199
198
|
signing_key:
|