Skip to content

Commit 204e192

Browse files
committed
hard code gem versions in gempsec
1 parent f37725b commit 204e192

File tree

7 files changed

+8
-23
lines changed

7 files changed

+8
-23
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ RUN sed -i '/git/d' ../../lib/sdk/*.gemspec \
4242
# RUN sed -i '/path/d' Gemfile
4343
ARG project=user
4444
COPY services/${project}/Gemfile* ./
45-
COPY services/${project}/ros-${project}.gemspec ./
45+
COPY services/${project}/cnfs-${project}.gemspec ./
4646

4747
RUN bundle install \
4848
&& find /usr/local/bundle -iname '*.o' -exec rm -rf {} \; \

lib/sdk/cnfs_sdk.gemspec

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@
22

33
$LOAD_PATH.push File.expand_path('lib', __dir__)
44

5-
require 'ros_sdk/version'
6-
75
Gem::Specification.new do |spec|
86
spec.name = 'cnfs_sdk'
9-
spec.version = RosSdk::VERSION
7+
spec.version = '0.0.1.alpha'
108
spec.authors = ['Robert Roach']
119
spec.email = ['[email protected]']
1210

services/cognito/cnfs-cognito.gemspec

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,10 @@
22

33
$LOAD_PATH.push File.expand_path('lib', __dir__)
44

5-
# Maintain your gem's version:
6-
require 'ros/cognito/version'
7-
85
# Describe your gem and declare its dependencies:
96
Gem::Specification.new do |spec|
107
spec.name = 'cnfs-cognito'
11-
spec.version = Ros::Cognito::VERSION
8+
spec.version = '0.0.1.alpha1'
129
spec.authors = ['Robert Roach', 'Rui Baltazar']
1310
1411
spec.homepage = 'http://guides.rails-on-services.org/'

services/comm/cnfs-comm.gemspec

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,13 @@
22

33
$LOAD_PATH.push File.expand_path('lib', __dir__)
44

5-
# Maintain your gem's version:
6-
require 'ros/comm/version'
7-
85
Gem::Specification.new do |spec|
96
spec.name = 'cnfs-comm'
10-
spec.version = Ros::Comm::VERSION
7+
spec.version = '0.0.1.alpha'
118
spec.authors = ['Robert Roach', 'Rui Baltazar']
129
1310
spec.homepage = 'http://guides.rails-on-services.org/'
14-
spec.summary = 'Provides communication tools, e.g. Twilio to the Ros Platform'
11+
spec.summary = 'Provides communication tools, e.g. Twilio to the CNFS Platform'
1512
spec.description = '3rd party communication services can be invoked by other services per tenant'
1613
spec.license = 'MIT'
1714
spec.required_ruby_version = ['> 2.6.0', '< 2.7' ]

services/iam/cnfs-iam.gemspec

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
# frozen_string_literal: true
22

33
$LOAD_PATH.push File.expand_path('lib', __dir__)
4-
require 'ros/iam/version'
54

65
Gem::Specification.new do |spec|
76
spec.name = 'cnfs-iam'
8-
spec.version = Ros::Iam::VERSION
7+
spec.version = '0.0.1.alpha'
98
spec.authors = ['Robert Roach', 'Rui Baltazar']
109
1110
spec.homepage = 'http://guides.rails-on-services.org/'

services/organization/cnfs-organization.gemspec

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,10 @@
22

33
$LOAD_PATH.push File.expand_path('lib', __dir__)
44

5-
# Maintain your gem's version:
6-
require 'ros/organization/version'
7-
85
# Describe your gem and declare its dependencies:
96
Gem::Specification.new do |spec|
107
spec.name = 'cnfs-organization'
11-
spec.version = Ros::Organization::VERSION
8+
spec.version = '0.0.1.alpha'
129
spec.authors = ['Robert Roach', 'Rui Baltazar']
1310
1411
spec.homepage = 'http://guides.rails-on-services.org/'

services/storage/cnfs-storage.gemspec

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,10 @@
22

33
$LOAD_PATH.push File.expand_path('lib', __dir__)
44

5-
# Maintain your gem's version:
6-
require 'ros/storage/version'
7-
85
# Describe your gem and declare its dependencies:
96
Gem::Specification.new do |spec|
107
spec.name = 'cnfs-storage'
11-
spec.version = Ros::Storage::VERSION
8+
spec.version = '0.0.1.alpha'
129
spec.authors = ['Robert Roach', 'Rui Baltazar']
1310
1411
spec.homepage = 'http://guides.rails-on-services.org/'

0 commit comments

Comments
 (0)