Skip to content

Commit

Permalink
Only include vendored assets in the gem (#313)
Browse files Browse the repository at this point in the history
With the introduction of the github workflow in
a432faf bundler is run as part of
making the gem and this adds bundled code in vendor/bundle.

With the "vendor/**/*" spec in the gemspec file this code also gets
included in the gem by accident.
  • Loading branch information
graaff authored Jun 14, 2024
1 parent 2a14215 commit c5d0c6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tinymce-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Gem::Specification.new do |s|
s.version = TinyMCE::Rails::VERSION
s.summary = "Rails asset pipeline integration for TinyMCE."
s.description = "Seamlessly integrates TinyMCE into the Rails asset pipeline introduced in Rails 3.1."
s.files = Dir["README.md", "LICENSE", "Rakefile", "app/**/*", "lib/**/*", "vendor/**/*"]
s.files = Dir["README.md", "LICENSE", "Rakefile", "app/**/*", "lib/**/*", "vendor/assets/**/*"]
s.authors = ["Sam Pohlenz"]
s.email = "sam@sampohlenz.com"
s.homepage = "https://github.com/spohlenz/tinymce-rails"
Expand Down

0 comments on commit c5d0c6a

Please sign in to comment.