Skip to content

Commit 49841ef

Browse files
committed
chore: rename gem
1 parent 04a22f8 commit 49841ef

7 files changed

Lines changed: 10 additions & 10 deletions

File tree

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
source "https://rubygems.org"
44

5-
# Specify your gem's dependencies in sdk-ruby.gemspec
5+
# Specify your gem's dependencies in lingodotdev.gemspec
66
gemspec
77

88
gem "irb"

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
sdk-ruby (0.1.0)
4+
lingodotdev (0.1.0)
55
json (~> 2.0)
66

77
GEM
@@ -64,7 +64,7 @@ DEPENDENCIES
6464
irb
6565
rake (~> 13.0)
6666
rspec (~> 3.13)
67-
sdk-ruby!
67+
lingodotdev!
6868

6969
BUNDLED WITH
7070
2.7.1

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The Lingo.dev Ruby SDK provides a simple and powerful interface for localizing c
1818
Add this line to your application's Gemfile:
1919

2020
```ruby
21-
gem 'sdk-ruby'
21+
gem 'lingodotdev'
2222
```
2323

2424
And then execute:
@@ -30,7 +30,7 @@ bundle install
3030
Or install it yourself with:
3131

3232
```bash
33-
gem install sdk-ruby
33+
gem install lingodotdev
3434
```
3535

3636
## Quick start

examples/ruby-on-rails/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source "https://rubygems.org"
44
gem "rails", "~> 8.1.1"
55

66
# Local SDK gem
7-
gem "sdk-ruby", path: "../../"
7+
gem "lingodotdev", path: "../../"
88
# The modern asset pipeline for Rails [https://github.com/rails/propshaft]
99
gem "propshaft"
1010
# Use sqlite3 as the database for Active Record

examples/ruby-on-rails/Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ../..
33
specs:
4-
sdk-ruby (0.1.0)
4+
lingodotdev (0.1.0)
55
json (~> 2.0)
66

77
GEM
@@ -406,7 +406,7 @@ DEPENDENCIES
406406
puma (>= 5.0)
407407
rails (~> 8.1.1)
408408
rubocop-rails-omakase
409-
sdk-ruby!
409+
lingodotdev!
410410
selenium-webdriver
411411
solid_cable
412412
solid_cache

examples/ruby-on-rails/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ On error (e.g., missing or invalid API key):
8282
The SDK is integrated via a local path reference in the `Gemfile`:
8383

8484
```ruby
85-
gem "sdk-ruby", path: "../../"
85+
gem "lingodotdev", path: "../../"
8686
```
8787

8888
The translation logic is implemented in `app/controllers/translate_controller.rb`:

sdk-ruby.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
require_relative "lib/sdk/ruby/version"
44

55
Gem::Specification.new do |spec|
6-
spec.name = "sdk-ruby"
6+
spec.name = "lingodotdev"
77
spec.version = Sdk::Ruby::VERSION
88
spec.authors = ["TODO: Write your name"]
99
spec.email = ["TODO: Write your email address"]

0 commit comments

Comments
 (0)