Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
cms (0.1.0)
cms42 (0.1.0)
actiontext (>= 7.1, < 9.0)
discard (~> 1.4)
importmap-rails (>= 1.2)
Expand Down Expand Up @@ -308,7 +308,7 @@ PLATFORMS
x86_64-linux-musl

DEPENDENCIES
cms!
cms42!
factory_bot_rails
importmap-rails
pg
Expand Down Expand Up @@ -336,7 +336,7 @@ CHECKSUMS
base64 (0.3.0) sha256=27337aeabad6ffae05c265c450490628ef3ebd4b67be58257393227588f5a97b
bigdecimal (4.0.1) sha256=8b07d3d065a9f921c80ceaea7c9d4ae596697295b584c296fe599dd0ad01c4a7
builder (3.3.0) sha256=497918d2f9dca528fdca4b88d84e4ef4387256d984b8154e9d5d3fe5a9c8835f
cms (0.1.0)
cms42 (0.1.0)
concurrent-ruby (1.3.6) sha256=6b56837e1e7e5292f9864f34b69c5a2cbc75c0cf5338f1ce9903d10fa762d5ab
connection_pool (3.0.2) sha256=33fff5ba71a12d2aa26cb72b1db8bba2a1a01823559fb01d29eb74c286e62e0a
crass (1.0.6) sha256=dc516022a56e7b3b156099abc81b6d2b08ea1ed12676ac7a5657617f012bd45d
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,14 @@ Rails-native, straightforward to extend, and easy for content editors to use.
Add to your host app's `Gemfile`:

```ruby
gem "cms", git: "https://github.com/shift42/cms"
gem "cms42"
```

The published gem name is `cms42`, but the engine namespace remains `Cms::`.
If you load gems manually instead of letting Bundler auto-require them, use:

```ruby
require "cms42"
```

Install and migrate:
Expand Down
2 changes: 1 addition & 1 deletion cms.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require_relative "lib/cms/version"

Gem::Specification.new do |spec|
spec.name = "cms"
spec.name = "cms42"
spec.version = Cms::VERSION
spec.authors = ["shift42"]
spec.email = ["hello@shift42.io"]
Expand Down
3 changes: 3 additions & 0 deletions lib/cms42.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# frozen_string_literal: true

require "cms"