public static string GenerateScriptTags(string rootPath, JasmineSpec spec)
        {
            StringBuilder sb        = new StringBuilder();
            string        scriptTag = @"<script type=""text/javascript"" src=""{0}""></script>" + Environment.NewLine;

            return(scriptTag);
        }
        public static JasmineSpec GetScriptListing(string node)
        {
            if (!Path.IsPathRooted(node))
            {
                node = HostingEnvironment.MapPath(node);
            }
            JasmineSpec rootNodeJasmineSpec = new JasmineSpec();

            if (Directory.Exists(node))
            {
                _index++;
                rootNodeJasmineSpec.Id = _index;
                foreach (FileInfo fileInfo in GetFilesInCurrentDirector(node))
                {
                    rootNodeJasmineSpec.ChildJasimeSpec.Add(GetScriptListing(fileInfo.FullName));
                }
            }
            else
            {
                throw new ArgumentException("Invalid Path");
            }
            return(rootNodeJasmineSpec);
        }