Skip to content

Commit 5e669fe

Browse files
committedDec 1, 2020
Initial Ruby RIC implementation
·
v1.0.22.0.0
1 parent c2609de commit 5e669fe

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+3224
-167
lines changed
 

‎.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/.bundle/
2+
/.yardoc
3+
/_yardoc/
4+
/coverage/
5+
/doc/
6+
/pkg/
7+
/spec/reports/
8+
/tmp/
9+
vendor
10+
test/examples/hello-world-docker/pkg
11+
*.iml
12+
.DS_Store

‎Gemfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
3+
# frozen_string_literal: true
4+
5+
source 'https://rubygems.org'
6+
7+
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
8+
9+
# Specify your gem's dependencies in aws_lambda_ric.gemspec
10+
gemspec

0 commit comments

Comments
 (0)
Please sign in to comment.