lib/settings.rb in inqlude-0.0.6 vs lib/settings.rb in inqlude-0.0.7

- old
+ new

@@ -14,17 +14,14 @@ # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. class Settings - attr_accessor :offline + attr_accessor :offline, :manifest_path def initialize @offline = false - end - - def manifest_path - local_path "manifests" + @manifest_path = local_path "manifests" end def data_path File.expand_path('../../data',__FILE__) end