diff --git a/.gitignore b/.gitignore index 39af5edd..e6bb285c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,53 +1,4 @@ -*.gem -*.rbc -/.config -/coverage/ -/InstalledFiles -/pkg/ -/spec/reports/ -/spec/examples.txt -/test/tmp/ -/test/version_tmp/ -/tmp/ - -# Used by dotenv library to load environment variables. -# .env - -## Specific to RubyMotion: -.dat* -.repl_history -build/ -*.bridgesupport -build-iPhoneOS/ -build-iPhoneSimulator/ - -## Specific to RubyMotion (use of CocoaPods): -# -# We recommend against adding the Pods directory to your .gitignore. However -# you should judge for yourself, the pros and cons are mentioned at: -# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control -# -# vendor/Pods/ - -## Documentation cache and generated files: -/.yardoc/ -/_yardoc/ -/doc/ -/rdoc/ - -## Environment normalization: -/.bundle/ -/vendor/bundle -/lib/bundler/man/ - -# for a library or gem, you might want to ignore these files since the code is -# intended to run in multiple environments; otherwise, check them in: -# Gemfile.lock -# .ruby-version -# .ruby-gemset - -# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: -.rvmrc - -data/ -/.vscode/ +/.idea/ +.DS_Store +*.iml +*.gem \ No newline at end of file diff --git a/build_images.sh b/build_images.sh deleted file mode 100755 index 55f4fbb1..00000000 --- a/build_images.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2019, 2020 Oracle and/or its affiliates. All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - - -set -xeuo pipefail - -if [[ -z ${1:-} ]];then - echo "Please supply ruby version as argument to build image." >> /dev/stderr - exit 2 -fi - -rubyversion=$1 -user="fnproject" - -echo $rubyversion -pushd images/build/${rubyversion} && docker build -t ${user}/ruby:${rubyversion}-dev . && popd -pushd images/runtime/${rubyversion} && docker build -t ${user}/ruby:${rubyversion} . && popd diff --git a/lib/fdk/version.rb b/lib/fdk/version.rb index 14f33354..dfbc39ef 100644 --- a/lib/fdk/version.rb +++ b/lib/fdk/version.rb @@ -17,5 +17,5 @@ # module FDK - VERSION = "0.0.24" + VERSION = "0.0.25" end diff --git a/release.sh b/release.sh old mode 100755 new mode 100644 index 38c9debc..83d60e49 --- a/release.sh +++ b/release.sh @@ -30,4 +30,4 @@ git push git push origin $tag gem build fdk.gemspec -gem push fdk-$version.gem +gem push fdk-$version.gem \ No newline at end of file