radiantcms-couchrest_model 0.1.9 → 0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/config/boot.rb +2 -2
- data/radiantcms-couchrest_model.gemspec +1 -1
- metadata +2 -3
data/config/boot.rb
CHANGED
|
@@ -108,9 +108,9 @@ module Radiant
|
|
|
108
108
|
|
|
109
109
|
def load_radiant_gem
|
|
110
110
|
if version = self.class.gem_version
|
|
111
|
-
gem '
|
|
111
|
+
gem 'radiantcms-couchrest_model', version
|
|
112
112
|
else
|
|
113
|
-
gem '
|
|
113
|
+
gem 'radiantcms-couchrest_model'
|
|
114
114
|
end
|
|
115
115
|
rescue Gem::LoadError => load_error
|
|
116
116
|
$stderr.puts %(Missing the Radiant #{version} gem. Please `gem install -v=#{version} radiant`, update your RADIANT_GEM_VERSION setting in config/environment.rb for the Radiant version you do have installed, or comment out RADIANT_GEM_VERSION to use the latest version installed.)
|