restpack-web 0.2.4 → 0.2.5
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/lib/restpack-web/app.rb +1 -1
- data/lib/restpack-web/context.rb +1 -1
- data/lib/restpack-web/version.rb +1 -1
- metadata +1 -1
data/lib/restpack-web/app.rb
CHANGED
|
@@ -10,7 +10,7 @@ module RestPack
|
|
|
10
10
|
options[:core_domain] ||= ENV['RESTPACK_CORE_SERVICE']
|
|
11
11
|
options[:access_key] ||= ENV['RESTPACK_ACCESS_KEY']
|
|
12
12
|
|
|
13
|
-
raise "missing configuration" unless options[:core_domain] || options[:access_key]
|
|
13
|
+
raise "missing RestPack configuration" unless options[:core_domain] || options[:access_key]
|
|
14
14
|
|
|
15
15
|
@core_cache = RestPack::Core::Client::Cache.create(options[:core_domain], options[:access_key])
|
|
16
16
|
end
|
data/lib/restpack-web/context.rb
CHANGED
data/lib/restpack-web/version.rb
CHANGED