diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 000000000..94075e99a --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2016 Code School + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 66e3bebe0..413301dd2 100755 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This is a sample project to test out how projects work at Code School. For this # Getting Started -To get started with this project, head over to the [Hello Code School](https://www.codeschool.com/projects/hello-codeschool) project on Code School, and begin! It'll walk you through all of the steps below. They're included here in the readme in case you work better locally, or want to try working on this project offline. +To get started with this project, head over to the [Hello Code School](https://www.codeschool.com/projects/hello-code-school) project on Code School, and begin! It'll walk you through all of the steps below. They're included here in the readme in case you work better locally, or want to try working on this project offline. # Prerequisites @@ -17,7 +17,7 @@ If you know these, you should be all set to jump in and give this project a shot # Setup -In order to get this working, you'll need to have [Git](https://git-scm.com/) installed, and have a GitHub account. If this is your first time setting up Git, I'd recommend checking out Code School's video on [How to Setup Git for Code School Projects in 5 Minutes](#) to learn what you need to know. +In order to get this working, you'll need to have [Git](https://git-scm.com/) installed, and have a GitHub account. If this is your first time setting up Git, I'd recommend checking out Code School's video on How to Setup Git for Code School Projects in 5 Minutes to learn what you need to know. To get started, fork this repository to your account and clone it down locally. If you want, you can also try doing this completely from GitHub! @@ -43,7 +43,7 @@ In these `li` elements, list out what you want to learn. # Checking Your Work -Once you've completed all of the tasks, go ahead and commit those to your fork of this repository and push it up to GitHub. Follow the directions on [Hello Code School](https://www.codeschool.com/projects/hello-codeschool) to submit your project and get feedback from Code School. +Once you've completed all of the tasks, go ahead and commit those to your fork of this repository and push it up to GitHub. Follow the directions on [Hello Code School](https://www.codeschool.com/projects/hello-code-school) to submit your project and get feedback from Code School. ## Running Tests Locally @@ -88,4 +88,6 @@ This will make your `index.html` file available at the URL: `http://.github.io/HelloCodeSchoolProject/` -For instance, our `answer` branch is available at the url [http://codeschool.github.io/HelloCodeSchoolProject/](http://codeschool.github.io/HelloCodeSchoolProject/). +# Another Answer + +If you want to checkout one other possible solution to this problem and compare your work, you can checkout the `solution` branch. diff --git a/index.html b/index.html index 4f7f0189f..c1b75b3e0 100755 --- a/index.html +++ b/index.html @@ -4,8 +4,13 @@ + varungn - - +

Hello, Code School!

+ + diff --git a/test/index_test.js b/test/index_test.js index 071f5c40a..e381a3f4f 100755 --- a/test/index_test.js +++ b/test/index_test.js @@ -21,7 +21,7 @@ describe('Your HTML Page', function() { assert.equal(window.$('title').length, 1, 'Make sure to create a `title` element.'); }); - it('should have a title with the text "Code School" @title', function() { + it('should have a title that contains your name @title', function() { assert.notEqual(window.$('title').text(), '', 'Make sure to set the content of the `title` element to your Code School username.'); });