functions_framework 0.11.0 → 1.0.0
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 +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +2 -2
- data/docs/overview.md +2 -2
- data/docs/writing-functions.md +3 -3
- data/lib/functions_framework/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: feaa072a9d05a5a0308e4721d338aea1d5bdcb65d257f74210073518d3f21735
|
|
4
|
+
data.tar.gz: ef5d554a4ebf4dcb5e5d00b88f17ac36bd151d3b061038a35a26ed520dcd02b7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 699655e4efcd96b4fa46ccf2017f38d76848b2827115909b599bd722d2eb0d447da1fb3bc0323f825bf0b69024f1a947eaf969e95b205d90e6393babe2b8c15e
|
|
7
|
+
data.tar.gz: 297c2eda593a1b995c233b7ff89d92e11c7921322bceeb14eac71eb351bf04d0956e6c0de18e91137884ace3fc6f0a4422c2e3b79d7598fdc0ab567f93bfe638
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### v1.0.0 / 2021-07-07
|
|
4
|
+
|
|
5
|
+
* Bumped the version to 1.0.
|
|
6
|
+
* Removed the "preview" notices for Google Cloud Functions since the Ruby runtime is now GA.
|
|
7
|
+
|
|
3
8
|
### v0.11.0 / 2021-06-28
|
|
4
9
|
|
|
5
10
|
* UPDATED: Update CloudEvents dependency to 0.5 to get fixes for JSON formatting cases
|
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@ An open source framework for writing lightweight, portable Ruby functions that
|
|
|
4
4
|
run in a serverless environment. Functions written to this Framework will run
|
|
5
5
|
in many different environments, including:
|
|
6
6
|
|
|
7
|
-
* [Google Cloud Functions](https://cloud.google.com/functions)
|
|
7
|
+
* [Google Cloud Functions](https://cloud.google.com/functions)
|
|
8
8
|
* [Google Cloud Run](https://cloud.google.com/run)
|
|
9
9
|
* Any other [Knative](https://github.com/knative)-based environment
|
|
10
10
|
* Your local development machine
|
|
@@ -60,7 +60,7 @@ Create a `Gemfile` listing the Functions Framework as a dependency:
|
|
|
60
60
|
```ruby
|
|
61
61
|
# Gemfile
|
|
62
62
|
source "https://rubygems.org"
|
|
63
|
-
gem "functions_framework", "~> 0
|
|
63
|
+
gem "functions_framework", "~> 1.0"
|
|
64
64
|
```
|
|
65
65
|
|
|
66
66
|
Create a file called `app.rb` and include the following code. This defines a
|
data/docs/overview.md
CHANGED
|
@@ -8,7 +8,7 @@ The Functions Framework is an open source framework for writing lightweight,
|
|
|
8
8
|
portable Ruby functions that run in a serverless environment. Functions written
|
|
9
9
|
to this Framework will run in many different environments, including:
|
|
10
10
|
|
|
11
|
-
* [Google Cloud Functions](https://cloud.google.com/functions)
|
|
11
|
+
* [Google Cloud Functions](https://cloud.google.com/functions)
|
|
12
12
|
* [Google Cloud Run](https://cloud.google.com/run)
|
|
13
13
|
* Any other [Knative](https://github.com/knative)-based environment
|
|
14
14
|
* Your local development machine
|
|
@@ -64,7 +64,7 @@ Create a `Gemfile` listing the Functions Framework as a dependency:
|
|
|
64
64
|
```ruby
|
|
65
65
|
# Gemfile
|
|
66
66
|
source "https://rubygems.org"
|
|
67
|
-
gem "functions_framework", "~> 0
|
|
67
|
+
gem "functions_framework", "~> 1.0"
|
|
68
68
|
```
|
|
69
69
|
|
|
70
70
|
Create a file called `app.rb` and include the following code. This defines a
|
data/docs/writing-functions.md
CHANGED
|
@@ -111,7 +111,7 @@ dependency on Sinatra in your `Gemfile`:
|
|
|
111
111
|
|
|
112
112
|
```ruby
|
|
113
113
|
source "https://rubygems.org"
|
|
114
|
-
gem "functions_framework", "~> 0
|
|
114
|
+
gem "functions_framework", "~> 1.0"
|
|
115
115
|
gem "sinatra", "~> 2.0"
|
|
116
116
|
```
|
|
117
117
|
|
|
@@ -152,7 +152,7 @@ information about it:
|
|
|
152
152
|
require "functions_framework"
|
|
153
153
|
|
|
154
154
|
FunctionsFramework.cloud_event "hello" do |event|
|
|
155
|
-
|
|
155
|
+
logger.info "I received an event of type #{event.type}!"
|
|
156
156
|
end
|
|
157
157
|
```
|
|
158
158
|
|
|
@@ -470,7 +470,7 @@ Following is a typical layout for a Functions Framework based project.
|
|
|
470
470
|
```ruby
|
|
471
471
|
# Gemfile
|
|
472
472
|
source "https://rubygems.org"
|
|
473
|
-
gem "functions_framework", "~> 0
|
|
473
|
+
gem "functions_framework", "~> 1.0"
|
|
474
474
|
```
|
|
475
475
|
|
|
476
476
|
```ruby
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: functions_framework
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Azuma
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-07-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cloud_events
|
|
@@ -99,10 +99,10 @@ homepage: https://github.com/GoogleCloudPlatform/functions-framework-ruby
|
|
|
99
99
|
licenses:
|
|
100
100
|
- Apache-2.0
|
|
101
101
|
metadata:
|
|
102
|
-
changelog_uri: https://googlecloudplatform.github.io/functions-framework-ruby/
|
|
102
|
+
changelog_uri: https://googlecloudplatform.github.io/functions-framework-ruby/v1.0.0/file.CHANGELOG.html
|
|
103
103
|
source_code_uri: https://github.com/GoogleCloudPlatform/functions-framework-ruby
|
|
104
104
|
bug_tracker_uri: https://github.com/GoogleCloudPlatform/functions-framework-ruby/issues
|
|
105
|
-
documentation_uri: https://googlecloudplatform.github.io/functions-framework-ruby/
|
|
105
|
+
documentation_uri: https://googlecloudplatform.github.io/functions-framework-ruby/v1.0.0
|
|
106
106
|
post_install_message:
|
|
107
107
|
rdoc_options: []
|
|
108
108
|
require_paths:
|