Commit 872ee70b45835a32837da6249dbaeaac3dbe30a6
Merge branch 'master' of github.com:ike/syspro
Showing
3 changed files
with
68 additions
and
0 deletions
Show diff stats
.gitignore
| ... | ... | @@ -9,3 +9,47 @@ |
| 9 | 9 | |
| 10 | 10 | # rspec failure tracking |
| 11 | 11 | .rspec_status |
| 12 | +*.rbc | |
| 13 | +capybara-*.html | |
| 14 | +.rspec | |
| 15 | +/log | |
| 16 | +/tmp | |
| 17 | +/db/*.sqlite3 | |
| 18 | +/db/*.sqlite3-journal | |
| 19 | +/public/system | |
| 20 | +/coverage/ | |
| 21 | +/spec/tmp | |
| 22 | +*.orig | |
| 23 | +rerun.txt | |
| 24 | +pickle-email-*.html | |
| 25 | + | |
| 26 | +# TODO Comment out this rule if you are OK with secrets being uploaded to the repo | |
| 27 | +config/initializers/secret_token.rb | |
| 28 | + | |
| 29 | +# Only include if you have production secrets in this file, which is no longer a Rails default | |
| 30 | +# config/secrets.yml | |
| 31 | + | |
| 32 | +# dotenv | |
| 33 | +# TODO Comment out this rule if environment variables can be committed | |
| 34 | +.env | |
| 35 | + | |
| 36 | +## Environment normalization: | |
| 37 | +/.bundle | |
| 38 | +/vendor/bundle | |
| 39 | + | |
| 40 | +# these should all be checked in to normalize the environment: | |
| 41 | +# Gemfile.lock, .ruby-version, .ruby-gemset | |
| 42 | + | |
| 43 | +# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: | |
| 44 | +.rvmrc | |
| 45 | + | |
| 46 | +# if using bower-rails ignore default bower_components path bower.json files | |
| 47 | +/vendor/assets/bower_components | |
| 48 | +*.bowerrc | |
| 49 | +bower.json | |
| 50 | + | |
| 51 | +# Ignore pow environment settings | |
| 52 | +.powenv | |
| 53 | + | |
| 54 | +# Ignore Byebug command history file. | |
| 55 | +.byebug_history | ... | ... |
| 1 | +MIT License | |
| 2 | + | |
| 3 | +Copyright (c) 2018 Isaac Lewis | |
| 4 | + | |
| 5 | +Permission is hereby granted, free of charge, to any person obtaining a copy | |
| 6 | +of this software and associated documentation files (the "Software"), to deal | |
| 7 | +in the Software without restriction, including without limitation the rights | |
| 8 | +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| 9 | +copies of the Software, and to permit persons to whom the Software is | |
| 10 | +furnished to do so, subject to the following conditions: | |
| 11 | + | |
| 12 | +The above copyright notice and this permission notice shall be included in all | |
| 13 | +copies or substantial portions of the Software. | |
| 14 | + | |
| 15 | +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
| 16 | +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
| 17 | +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
| 18 | +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
| 19 | +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
| 20 | +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |
| 21 | +SOFTWARE. | ... | ... |
README.md
| ... | ... | @@ -41,3 +41,6 @@ The gem is available as open source under the terms of the [MIT License](https:/ |
| 41 | 41 | ## Code of Conduct |
| 42 | 42 | |
| 43 | 43 | Everyone interacting in the Syspro project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/syspro/blob/master/CODE_OF_CONDUCT.md). |
| 44 | + | |
| 45 | +# syspro | |
| 46 | +Syspro Rails adapter | ... | ... |