Initial commit
Tom Rutgers
committed Aug 14, 2018
commit 551ae2a0470e6877e3f43d3e8e0bd9b9a2eb5e4c
Showing 3
changed files with
73 additions
and 0 deletions
.gitignore
+50
-0
| @@ | @@ -0,0 +1,50 @@ |
| + | *.gem |
| + | *.rbc |
| + | /.config |
| + | /coverage/ |
| + | /InstalledFiles |
| + | /pkg/ |
| + | /spec/reports/ |
| + | /spec/examples.txt |
| + | /test/tmp/ |
| + | /test/version_tmp/ |
| + | /tmp/ |
| + | |
| + | # Used by dotenv library to load environment variables. |
| + | # .env |
| + | |
| + | ## Specific to RubyMotion: |
| + | .dat* |
| + | .repl_history |
| + | build/ |
| + | *.bridgesupport |
| + | build-iPhoneOS/ |
| + | build-iPhoneSimulator/ |
| + | |
| + | ## Specific to RubyMotion (use of CocoaPods): |
| + | # |
| + | # We recommend against adding the Pods directory to your .gitignore. However |
| + | # you should judge for yourself, the pros and cons are mentioned at: |
| + | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control |
| + | # |
| + | # vendor/Pods/ |
| + | |
| + | ## Documentation cache and generated files: |
| + | /.yardoc/ |
| + | /_yardoc/ |
| + | /doc/ |
| + | /rdoc/ |
| + | |
| + | ## Environment normalization: |
| + | /.bundle/ |
| + | /vendor/bundle |
| + | /lib/bundler/man/ |
| + | |
| + | # for a library or gem, you might want to ignore these files since the code is |
| + | # intended to run in multiple environments; otherwise, check them in: |
| + | # Gemfile.lock |
| + | # .ruby-version |
| + | # .ruby-gemset |
| + | |
| + | # unless supporting rvm < 1.11.0 or doing something fancy, ignore this: |
| + | .rvmrc |
LICENSE
+21
-0
| @@ | @@ -0,0 +1,21 @@ |
| + | MIT License |
| + | |
| + | Copyright (c) 2018 Tom Rutgers |
| + | |
| + | 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. |
README.md
+2
-0
| @@ | @@ -0,0 +1,2 @@ |
| + | # middleman-starter-netlify-cms |
| + | A simple example to get started with Middleman and Netlify CMS |