File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -6,10 +6,16 @@ The main use-case is to allow using UUIDs as primary keys with SQLite in [Rails]
6
6
7
7
## Installation
8
8
9
- Add this to your ` Gemfile ` :
9
+ Add this gem to your application's ` Gemfile ` , by running this:
10
+
11
+ ```
12
+ bundle add sqlite_extensions-uuid
13
+ ```
14
+
15
+ or by manually adding this line and running ` bundle ` :
10
16
11
17
``` ruby
12
- gem " sqlite_extensions-uuid" , github: " jethrodaniel/sqlite_extensions-uuid "
18
+ gem " sqlite_extensions-uuid"
13
19
```
14
20
15
21
In your Rails app, you'll need to load the extension in your ` config/database.yml ` like so:
Original file line number Diff line number Diff line change @@ -11,8 +11,6 @@ Gem::Specification.new do |spec|
11
11
spec . license = "MIT"
12
12
spec . required_ruby_version = ">= 3.0.0"
13
13
14
- # spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
15
-
16
14
spec . files = %w[
17
15
lib/sqlite_extensions/uuid.rb
18
16
ext/sqlite_extensions/uuid/sqlite3ext.h
You can’t perform that action at this time.
0 commit comments