Skip to content

Commit

Permalink
year updated to 2016
Browse files Browse the repository at this point in the history
  • Loading branch information
Yegor Bugayenko committed Jan 3, 2016
1 parent 6db47dc commit 1618dbd
Show file tree
Hide file tree
Showing 13 changed files with 33 additions and 20 deletions.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@ git:
depth: 10
node_js:
- "0.12"
addons:
apt:
packages:
- ruby
before_install:
- sudo apt-get install -y ruby
- npm install -g grunt-cli
- gem install --no-ri compass
- gem install --no-ri scss-lint
Expand Down
15 changes: 12 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* The MIT License (MIT)
*
* Copyright (c) 2015 Yegor Bugayenko
* Copyright (c) 2015-2016 Yegor Bugayenko
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -72,14 +72,23 @@ module.exports = function (grunt) {
config: '.scss-lint.yml',
colorizeOutput: true
},
},
shell: {
target: {
command: 'grep -q -r 2015-' + new Date().getFullYear()
+ ' --include "*.scss"'
+ ' --include "*.js"'
+ ' .'
}
}
}
);
require('load-grunt-tasks') (grunt, { scope: 'devDependencies' });
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-scss-lint');
grunt.registerTask('default', ['scsslint', 'sass:dist']);
grunt.registerTask('rultor', ['scsslint', 'sass:dist', 'sass:uncompressed']);
grunt.loadNpmTasks('grunt-shell');
grunt.registerTask('default', ['scsslint', 'sass:dist', 'shell']);
grunt.registerTask('rultor', ['scsslint', 'sass:dist', 'sass:uncompressed', 'shell']);
grunt.registerTask('dev', ['scsslint', 'sass:dev', 'watch']);
}

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015 Yegor Bugayenko
Copyright (c) 2015-2016 Yegor Bugayenko

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"homepage": "https://github.com/yegor256/tacit",
"devDependencies": {
"grunt": "0.4.5",
"grunt-shell": "1.1.2",
"grunt-contrib-sass": "0.9.2",
"grunt-contrib-watch": "0.6.1",
"grunt-scss-lint": "0.3.8",
Expand Down
2 changes: 1 addition & 1 deletion scss/_defs.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// The MIT License (MIT)
//
// Copyright (c) 2015 Yegor Bugayenko
// Copyright (c) 2015-2016 Yegor Bugayenko
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion scss/_forms.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// The MIT License (MIT)
//
// Copyright (c) 2015 Yegor Bugayenko
// Copyright (c) 2015-2016 Yegor Bugayenko
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion scss/_grid.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// The MIT License (MIT)
//
// Copyright (c) 2015 Yegor Bugayenko
// Copyright (c) 2015-2016 Yegor Bugayenko
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion scss/_headings.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// The MIT License (MIT)
//
// Copyright (c) 2015 Yegor Bugayenko
// Copyright (c) 2015-2016 Yegor Bugayenko
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion scss/_pre.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// The MIT License (MIT)
//
// Copyright (c) 2015 Yegor Bugayenko
// Copyright (c) 2015-2016 Yegor Bugayenko
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
Expand Down
12 changes: 6 additions & 6 deletions scss/_responsive.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// The MIT License (MIT)
//
// Copyright (c) 2015 Yegor Bugayenko
// Copyright (c) 2015-2016 Yegor Bugayenko
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
Expand All @@ -24,30 +24,30 @@
body {
padding: $em;
}

article {
border-radius: 0;
margin: -$em;
padding: $em;
}

textarea,
input,
select {
max-width: 100%;
}

fieldset {
// The following line fixes fieldset overflow in webkit browsers.
// For further info see:
// http://stackoverflow.com/questions/17408815/fieldset-resizes-wrong-appears-to-have-unremovable-min-width-min-content/17863685#17863685
min-width: 0;
}

section {
width: auto;
}

fieldset,
x:-moz-any-link {
// The following lines fixes fieldset overflow bug in Firefox browser.
Expand Down
4 changes: 2 additions & 2 deletions scss/_tables.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// The MIT License (MIT)
//
// Copyright (c) 2015 Yegor Bugayenko
// Copyright (c) 2015-2016 Yegor Bugayenko
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -36,7 +36,7 @@ thead th {
border-bottom-width: .12 * $em;
padding-bottom: .35 * $em;
}

table {
display: block;
max-width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion scss/_typography.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// The MIT License (MIT)
//
// Copyright (c) 2015 Yegor Bugayenko
// Copyright (c) 2015-2016 Yegor Bugayenko
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion scss/main.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// The MIT License (MIT)
//
// Copyright (c) 2015 Yegor Bugayenko
// Copyright (c) 2015-2016 Yegor Bugayenko
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
Expand Down

0 comments on commit 1618dbd

Please sign in to comment.