diff --git a/Dockerfile b/Dockerfile index 28efcbf0..50d0f356 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,7 +42,7 @@ RUN sed -i '/git/d' ../../lib/sdk/*.gemspec \ # RUN sed -i '/path/d' Gemfile ARG project=user COPY services/${project}/Gemfile* ./ -COPY services/${project}/ros-${project}.gemspec ./ +COPY services/${project}/cnfs-${project}.gemspec ./ RUN bundle install \ && find /usr/local/bundle -iname '*.o' -exec rm -rf {} \; \ diff --git a/lib/sdk/cnfs_sdk.gemspec b/lib/sdk/cnfs_sdk.gemspec index b90375b6..aaeab22d 100644 --- a/lib/sdk/cnfs_sdk.gemspec +++ b/lib/sdk/cnfs_sdk.gemspec @@ -2,11 +2,9 @@ $LOAD_PATH.push File.expand_path('lib', __dir__) -require 'ros_sdk/version' - Gem::Specification.new do |spec| spec.name = 'cnfs_sdk' - spec.version = RosSdk::VERSION + spec.version = '0.0.1.alpha' spec.authors = ['Robert Roach'] spec.email = ['rjayroach@gmail.com'] diff --git a/services/cognito/cnfs-cognito.gemspec b/services/cognito/cnfs-cognito.gemspec index 98836632..7f354a5a 100644 --- a/services/cognito/cnfs-cognito.gemspec +++ b/services/cognito/cnfs-cognito.gemspec @@ -2,13 +2,10 @@ $LOAD_PATH.push File.expand_path('lib', __dir__) -# Maintain your gem's version: -require 'ros/cognito/version' - # Describe your gem and declare its dependencies: Gem::Specification.new do |spec| spec.name = 'cnfs-cognito' - spec.version = Ros::Cognito::VERSION + spec.version = '0.0.1.alpha1' spec.authors = ['Robert Roach', 'Rui Baltazar'] spec.email = ['rjayroach@gmail.com', 'rui.p.baltazar@gmail.com'] spec.homepage = 'http://guides.rails-on-services.org/' diff --git a/services/comm/cnfs-comm.gemspec b/services/comm/cnfs-comm.gemspec index 03a685a9..d6fb71c0 100644 --- a/services/comm/cnfs-comm.gemspec +++ b/services/comm/cnfs-comm.gemspec @@ -2,16 +2,13 @@ $LOAD_PATH.push File.expand_path('lib', __dir__) -# Maintain your gem's version: -require 'ros/comm/version' - Gem::Specification.new do |spec| spec.name = 'cnfs-comm' - spec.version = Ros::Comm::VERSION + spec.version = '0.0.1.alpha' spec.authors = ['Robert Roach', 'Rui Baltazar'] spec.email = ['rjayroach@gmail.com', 'rui.p.baltazar@gmail.com'] spec.homepage = 'http://guides.rails-on-services.org/' - spec.summary = 'Provides communication tools, e.g. Twilio to the Ros Platform' + spec.summary = 'Provides communication tools, e.g. Twilio to the CNFS Platform' spec.description = '3rd party communication services can be invoked by other services per tenant' spec.license = 'MIT' spec.required_ruby_version = ['> 2.6.0', '< 2.7' ] diff --git a/services/iam/cnfs-iam.gemspec b/services/iam/cnfs-iam.gemspec index 26e10a81..ee881443 100644 --- a/services/iam/cnfs-iam.gemspec +++ b/services/iam/cnfs-iam.gemspec @@ -1,11 +1,10 @@ # frozen_string_literal: true $LOAD_PATH.push File.expand_path('lib', __dir__) -require 'ros/iam/version' Gem::Specification.new do |spec| spec.name = 'cnfs-iam' - spec.version = Ros::Iam::VERSION + spec.version = '0.0.1.alpha' spec.authors = ['Robert Roach', 'Rui Baltazar'] spec.email = ['rjayroach@gmail.com', 'rui.p.baltazar@gmail.com'] spec.homepage = 'http://guides.rails-on-services.org/' diff --git a/services/organization/cnfs-organization.gemspec b/services/organization/cnfs-organization.gemspec index 139b031f..01faa745 100644 --- a/services/organization/cnfs-organization.gemspec +++ b/services/organization/cnfs-organization.gemspec @@ -2,13 +2,10 @@ $LOAD_PATH.push File.expand_path('lib', __dir__) -# Maintain your gem's version: -require 'ros/organization/version' - # Describe your gem and declare its dependencies: Gem::Specification.new do |spec| spec.name = 'cnfs-organization' - spec.version = Ros::Organization::VERSION + spec.version = '0.0.1.alpha' spec.authors = ['Robert Roach', 'Rui Baltazar'] spec.email = ['rjayroach@gmail.com', 'rui.p.baltazar@gmail.com'] spec.homepage = 'http://guides.rails-on-services.org/' diff --git a/services/storage/cnfs-storage.gemspec b/services/storage/cnfs-storage.gemspec index 610d6237..ffeec21c 100644 --- a/services/storage/cnfs-storage.gemspec +++ b/services/storage/cnfs-storage.gemspec @@ -2,13 +2,10 @@ $LOAD_PATH.push File.expand_path('lib', __dir__) -# Maintain your gem's version: -require 'ros/storage/version' - # Describe your gem and declare its dependencies: Gem::Specification.new do |spec| spec.name = 'cnfs-storage' - spec.version = Ros::Storage::VERSION + spec.version = '0.0.1.alpha' spec.authors = ['Robert Roach', 'Rui Baltazar'] spec.email = ['rjayroach@gmail.com', 'rui.p.baltazar@gmail.com'] spec.homepage = 'http://guides.rails-on-services.org/'