Skip to content

Commit e2191f9

Browse files
committed
Fixed issue with default env. Bumped version
1 parent 9d130d5 commit e2191f9

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
PATH
22
remote: .
33
specs:
4-
secrets-manager (1.0.1)
4+
secrets-manager (1.0.2)
55
aws-sdk-secretsmanager (>= 1.31.0)
66
concurrent-ruby (>= 1.0)
77

88
GEM
99
remote: https://rubygems.org/
1010
specs:
1111
aws-eventstream (1.0.3)
12-
aws-partitions (1.213.0)
12+
aws-partitions (1.214.0)
1313
aws-sdk-core (3.68.0)
1414
aws-eventstream (~> 1.0, >= 1.0.2)
1515
aws-partitions (~> 1.0)

lib/secrets-manager.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def initialize(client: nil)
4343
end
4444

4545
def secret_env
46-
ENV['AWS_SECRETS_ENV'] || ENV['RACK_ENV'] || dev
46+
ENV['AWS_SECRETS_ENV'] || ENV['RACK_ENV'] || 'development'
4747
end
4848

4949
def client

lib/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module SecretsManager
2-
VERSION = "1.0.1"
2+
VERSION = "1.0.2"
33
end

0 commit comments

Comments
 (0)