Skip to content

Commit

Permalink
refactor: simplify directory structure
Browse files Browse the repository at this point in the history
  • Loading branch information
benzend committed Oct 18, 2024
1 parent c9a1de7 commit 6ec8380
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

source "https://rubygems.org"

# Specify your gem's dependencies in glare-ux-metrics-metrics-rb.gemspec
# Specify your gem's dependencies in glare-ux_metrics-metrics-rb.gemspec
gemspec

gem "rake", "~> 13.0"
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
glare-ux-metrics-rb (0.2.3)
glare-ux_metrics-rb (0.2.4)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -50,7 +50,7 @@ PLATFORMS
ruby

DEPENDENCIES
glare-ux-metrics-rb!
glare-ux_metrics-rb!
rake (~> 13.0)
rspec (~> 3.1)
rubocop (~> 1.21)
Expand Down
2 changes: 1 addition & 1 deletion bin/console
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# frozen_string_literal: true

require "bundler/setup"
require "glare/ux-metrics/ux_metrics"
require "glare/ux_metrics"

# You can add fixtures and/or initialization code here to make experimenting
# with your gem easier. You can also use a different console, if you like.
Expand Down
4 changes: 2 additions & 2 deletions glare-ux-metrics-rb.gemspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# frozen_string_literal: true

require_relative "lib/glare/ux-metrics/version"
require_relative "lib/glare/version"

Gem::Specification.new do |spec|
spec.name = "glare-ux-metrics-rb"
spec.name = "glare-ux_metrics-rb"
spec.version = Glare::UxMetrics::VERSION
spec.authors = ["Benjamin Scott"]
spec.email = ["[email protected]"]
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion lib/glare/ux-metrics/version.rb → lib/glare/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Glare
module UxMetrics
VERSION = "0.2.3"
VERSION = "0.2.4"
end
end
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

require_relative "../../../lib/glare/ux-metrics/ux_metrics.rb"
require_relative "../../lib/glare/ux_metrics"

RSpec.describe Glare::UxMetrics do
describe Glare::UxMetrics::Sentiment do
Expand Down
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

require_relative "./glare/ux-metrics/ux_metrics"
require "glare/ux_metrics"

RSpec.configure do |config|
# Enable flags like --only-failures and --next-failure
Expand Down

0 comments on commit 6ec8380

Please sign in to comment.