spohlenz / tinymce-rails

Integration of TinyMCE with the Rails asset pipeline
Other
814 stars 257 forks source link

Extract tiny mce 4 branch to its own repo/gem #132

Closed tobidelius closed 10 years ago

tobidelius commented 10 years ago

This would be awesome so we can use it in our gemspecs as well. What do you think?

spohlenz commented 10 years ago

I presume you mean Gemfile rather than gemspec? If so, you can specify a branch in your Gemfile:

gem 'tinymce-rails', :github => 'spohlenz/tinymce', :branch => 'tinymce-4'

If you do mean gemspec, specify a version dependency:

s.add_dependency 'tinymce-rails', '~> 4.0'

So I probably won't be creating a separate repo, but I do plan on promoting TinyMCE to the master branch (and creating a separate branch for TinyMCE 3.x) sometime in the near future.

tobidelius commented 10 years ago

I meant gemspec but I thought it only was available in the rails 4 branch. No need for a new repo/gem then :) Thx!