Skip to content

Commit

Permalink
chore!: rename top-level lib folder to open_feature (#90)
Browse files Browse the repository at this point in the history
Signed-off-by: Max VelDink <[email protected]>
  • Loading branch information
maxveldink authored Jan 26, 2024
1 parent 60423be commit e1a9a01
Show file tree
Hide file tree
Showing 16 changed files with 7 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
release-type: ruby
package-name: openfeature-sdk
bump-minor-pre-major: true
version-file: "lib/openfeature/sdk/version.rb"
version-file: "lib/open_feature/sdk/version.rb"
outputs:
release_created: ${{ steps.release.outputs.release_created }}
release_tag_name: ${{ steps.release.outputs.tag_name }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ gem install openfeature-sdk
## Usage

```ruby
require 'openfeature/sdk'
require 'open_feature/sdk'
require 'json' # For JSON.dump

# API Initialization and configuration
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion openfeature-sdk.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

require_relative "lib/openfeature/sdk/version"
require_relative "lib/open_feature/sdk/version"

Gem::Specification.new do |spec|
spec.name = "openfeature-sdk"
Expand Down
2 changes: 1 addition & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"package-name": "openfeature-sdk",
"version-file": "lib/openfeature/sdk/version.rb"
"version-file": "lib/open_feature/sdk/version.rb"
}
}
}
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
# frozen_string_literal: true

require_relative "../../spec_helper"

require "openfeature/sdk/configuration"
require "openfeature/sdk/api"
require "openfeature/sdk/metadata"
require "spec_helper"

# https://openfeature.dev/docs/specification/sections/flag-evaluation#11-api-initialization-and-configuration

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
# frozen_string_literal: true

require_relative "../../spec_helper"

require "openfeature/sdk/client"
require "openfeature/sdk/metadata"
require "openfeature/sdk/provider/no_op_provider"
require "spec_helper"

# https://openfeature.dev/docs/specification/sections/flag-evaluation#12-client-usage

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

require "simplecov"

require "openfeature/sdk"
require "open_feature/sdk"

require "markly"

Expand Down

0 comments on commit e1a9a01

Please sign in to comment.