Module: Rumbda

Defined in:
lib/rumbda/init.rb,
lib/rumbda/build.rb,
lib/rumbda/version.rb

Defined Under Namespace

Classes: Build, Init

Constant Summary collapse

GEMFILE_CONTENTS =
<<-HEREDOC
source 'https://rubygems.org'

# add runtime dependencies here, they will be included in the index.zip

# This is the aws ruby sdk provides a ruby client for interacting with AWS apis.
# gem 'aws-sdk'

# DO NOT REMOVE; bundler version MUST match the version that the traveling ruby uses, which is currently 1.9.9.
gem 'bundler', '= 1.9.9'

# gems in the development group will not be included in the index.zip
group :development do
  gem 'rumbda'
end
HEREDOC
RUBY_VERSION_FILE_CONTENTS =
'2.2.2'.freeze
GITIGNORE_FILE_CONTENTS =
"tmp_rumbda\nindex.zip".freeze
VERSION =
'0.0.5'.freeze