├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── docs │ └── assets │ │ └── screenshot.png └── workflows │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE ├── README.md ├── Rakefile ├── SECURITY.md ├── bin └── smashing ├── javascripts ├── batman.jquery.js ├── batman.js ├── dashing.coffee ├── es5-shim.js └── jquery.js ├── lib ├── dashing.rb └── dashing │ ├── app.rb │ ├── cli.rb │ ├── downloader.rb │ └── version.rb ├── shipit.rubygems.yml ├── smashing.gemspec ├── templates ├── dashboard │ └── %name%.erb.tt ├── job │ └── %name%.rb ├── project │ ├── .gitignore │ ├── Gemfile │ ├── README.md │ ├── Rakefile │ ├── assets │ │ ├── fonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ │ ├── images │ │ │ └── logo.png │ │ ├── javascripts │ │ │ ├── application.coffee │ │ │ ├── d3-3.2.8.js │ │ │ ├── dashing.gridster.coffee │ │ │ ├── gridster │ │ │ │ ├── jquery.gridster.min.js │ │ │ │ └── jquery.leanModal.min.js │ │ │ ├── jquery.knob.js │ │ │ └── rickshaw-1.4.3.min.js │ │ └── stylesheets │ │ │ ├── all.css │ │ │ ├── application.scss │ │ │ ├── brands.css │ │ │ ├── jquery.gridster.min.css │ │ │ └── solid.css │ ├── config.ru │ ├── dashboards │ │ ├── layout.erb │ │ ├── sample.erb │ │ └── sampletv.erb │ ├── jobs │ │ ├── buzzwords.rb │ │ ├── convergence.rb │ │ ├── sample.rb │ │ └── twitter.rb.disabled │ ├── lib │ │ └── .empty_directory │ ├── public │ │ ├── 404.html │ │ └── favicon.ico │ └── widgets │ │ ├── clock │ │ ├── clock.coffee │ │ ├── clock.html │ │ └── clock.scss │ │ ├── comments │ │ ├── comments.coffee │ │ ├── comments.html │ │ └── comments.scss │ │ ├── graph │ │ ├── graph.coffee │ │ ├── graph.html │ │ └── graph.scss │ │ ├── iframe │ │ ├── iframe.coffee │ │ ├── iframe.html │ │ └── iframe.scss │ │ ├── image │ │ ├── image.coffee │ │ ├── image.html │ │ └── image.scss │ │ ├── list │ │ ├── list.coffee │ │ ├── list.html │ │ └── list.scss │ │ ├── meter │ │ ├── meter.coffee │ │ ├── meter.html │ │ └── meter.scss │ │ ├── number │ │ ├── number.coffee │ │ ├── number.html │ │ └── number.scss │ │ └── text │ │ ├── text.coffee │ │ ├── text.html │ │ └── text.scss └── widget │ └── %name% │ ├── %name%.coffee.tt │ ├── %name%.html │ └── %name%.scss.tt └── test ├── app_test.rb ├── cli_test.rb ├── downloader_test.rb └── test_helper.rb /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/docs/assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/.github/docs/assets/screenshot.png -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/Rakefile -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bin/smashing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/bin/smashing -------------------------------------------------------------------------------- /javascripts/batman.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/javascripts/batman.jquery.js -------------------------------------------------------------------------------- /javascripts/batman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/javascripts/batman.js -------------------------------------------------------------------------------- /javascripts/dashing.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/javascripts/dashing.coffee -------------------------------------------------------------------------------- /javascripts/es5-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/javascripts/es5-shim.js -------------------------------------------------------------------------------- /javascripts/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/javascripts/jquery.js -------------------------------------------------------------------------------- /lib/dashing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/lib/dashing.rb -------------------------------------------------------------------------------- /lib/dashing/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/lib/dashing/app.rb -------------------------------------------------------------------------------- /lib/dashing/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/lib/dashing/cli.rb -------------------------------------------------------------------------------- /lib/dashing/downloader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/lib/dashing/downloader.rb -------------------------------------------------------------------------------- /lib/dashing/version.rb: -------------------------------------------------------------------------------- 1 | module Dashing 2 | VERSION = "1.3.7.pre".freeze 3 | end 4 | -------------------------------------------------------------------------------- /shipit.rubygems.yml: -------------------------------------------------------------------------------- 1 | # using the default shipit config 2 | -------------------------------------------------------------------------------- /smashing.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/smashing.gemspec -------------------------------------------------------------------------------- /templates/dashboard/%name%.erb.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/dashboard/%name%.erb.tt -------------------------------------------------------------------------------- /templates/job/%name%.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/job/%name%.rb -------------------------------------------------------------------------------- /templates/project/.gitignore: -------------------------------------------------------------------------------- 1 | *DS_STORE 2 | history.yml 3 | -------------------------------------------------------------------------------- /templates/project/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/Gemfile -------------------------------------------------------------------------------- /templates/project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/README.md -------------------------------------------------------------------------------- /templates/project/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/Rakefile -------------------------------------------------------------------------------- /templates/project/assets/fonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/fonts/fa-brands-400.eot -------------------------------------------------------------------------------- /templates/project/assets/fonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/fonts/fa-brands-400.svg -------------------------------------------------------------------------------- /templates/project/assets/fonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/fonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /templates/project/assets/fonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/fonts/fa-brands-400.woff -------------------------------------------------------------------------------- /templates/project/assets/fonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/fonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /templates/project/assets/fonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/fonts/fa-regular-400.eot -------------------------------------------------------------------------------- /templates/project/assets/fonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/fonts/fa-regular-400.svg -------------------------------------------------------------------------------- /templates/project/assets/fonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/fonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /templates/project/assets/fonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/fonts/fa-regular-400.woff -------------------------------------------------------------------------------- /templates/project/assets/fonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/fonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /templates/project/assets/fonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/fonts/fa-solid-900.eot -------------------------------------------------------------------------------- /templates/project/assets/fonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/fonts/fa-solid-900.svg -------------------------------------------------------------------------------- /templates/project/assets/fonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/fonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /templates/project/assets/fonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/fonts/fa-solid-900.woff -------------------------------------------------------------------------------- /templates/project/assets/fonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/fonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /templates/project/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/images/logo.png -------------------------------------------------------------------------------- /templates/project/assets/javascripts/application.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/javascripts/application.coffee -------------------------------------------------------------------------------- /templates/project/assets/javascripts/d3-3.2.8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/javascripts/d3-3.2.8.js -------------------------------------------------------------------------------- /templates/project/assets/javascripts/dashing.gridster.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/javascripts/dashing.gridster.coffee -------------------------------------------------------------------------------- /templates/project/assets/javascripts/gridster/jquery.gridster.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/javascripts/gridster/jquery.gridster.min.js -------------------------------------------------------------------------------- /templates/project/assets/javascripts/gridster/jquery.leanModal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/javascripts/gridster/jquery.leanModal.min.js -------------------------------------------------------------------------------- /templates/project/assets/javascripts/jquery.knob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/javascripts/jquery.knob.js -------------------------------------------------------------------------------- /templates/project/assets/javascripts/rickshaw-1.4.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/javascripts/rickshaw-1.4.3.min.js -------------------------------------------------------------------------------- /templates/project/assets/stylesheets/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/stylesheets/all.css -------------------------------------------------------------------------------- /templates/project/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /templates/project/assets/stylesheets/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/stylesheets/brands.css -------------------------------------------------------------------------------- /templates/project/assets/stylesheets/jquery.gridster.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/stylesheets/jquery.gridster.min.css -------------------------------------------------------------------------------- /templates/project/assets/stylesheets/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/assets/stylesheets/solid.css -------------------------------------------------------------------------------- /templates/project/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/config.ru -------------------------------------------------------------------------------- /templates/project/dashboards/layout.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/dashboards/layout.erb -------------------------------------------------------------------------------- /templates/project/dashboards/sample.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/dashboards/sample.erb -------------------------------------------------------------------------------- /templates/project/dashboards/sampletv.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/dashboards/sampletv.erb -------------------------------------------------------------------------------- /templates/project/jobs/buzzwords.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/jobs/buzzwords.rb -------------------------------------------------------------------------------- /templates/project/jobs/convergence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/jobs/convergence.rb -------------------------------------------------------------------------------- /templates/project/jobs/sample.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/jobs/sample.rb -------------------------------------------------------------------------------- /templates/project/jobs/twitter.rb.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/jobs/twitter.rb.disabled -------------------------------------------------------------------------------- /templates/project/lib/.empty_directory: -------------------------------------------------------------------------------- 1 | .empty_directory -------------------------------------------------------------------------------- /templates/project/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/public/404.html -------------------------------------------------------------------------------- /templates/project/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/public/favicon.ico -------------------------------------------------------------------------------- /templates/project/widgets/clock/clock.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/clock/clock.coffee -------------------------------------------------------------------------------- /templates/project/widgets/clock/clock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/clock/clock.html -------------------------------------------------------------------------------- /templates/project/widgets/clock/clock.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/clock/clock.scss -------------------------------------------------------------------------------- /templates/project/widgets/comments/comments.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/comments/comments.coffee -------------------------------------------------------------------------------- /templates/project/widgets/comments/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/comments/comments.html -------------------------------------------------------------------------------- /templates/project/widgets/comments/comments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/comments/comments.scss -------------------------------------------------------------------------------- /templates/project/widgets/graph/graph.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/graph/graph.coffee -------------------------------------------------------------------------------- /templates/project/widgets/graph/graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/graph/graph.html -------------------------------------------------------------------------------- /templates/project/widgets/graph/graph.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/graph/graph.scss -------------------------------------------------------------------------------- /templates/project/widgets/iframe/iframe.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/iframe/iframe.coffee -------------------------------------------------------------------------------- /templates/project/widgets/iframe/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/iframe/iframe.html -------------------------------------------------------------------------------- /templates/project/widgets/iframe/iframe.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/iframe/iframe.scss -------------------------------------------------------------------------------- /templates/project/widgets/image/image.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/image/image.coffee -------------------------------------------------------------------------------- /templates/project/widgets/image/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/image/image.html -------------------------------------------------------------------------------- /templates/project/widgets/image/image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/image/image.scss -------------------------------------------------------------------------------- /templates/project/widgets/list/list.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/list/list.coffee -------------------------------------------------------------------------------- /templates/project/widgets/list/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/list/list.html -------------------------------------------------------------------------------- /templates/project/widgets/list/list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/list/list.scss -------------------------------------------------------------------------------- /templates/project/widgets/meter/meter.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/meter/meter.coffee -------------------------------------------------------------------------------- /templates/project/widgets/meter/meter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/meter/meter.html -------------------------------------------------------------------------------- /templates/project/widgets/meter/meter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/meter/meter.scss -------------------------------------------------------------------------------- /templates/project/widgets/number/number.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/number/number.coffee -------------------------------------------------------------------------------- /templates/project/widgets/number/number.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/number/number.html -------------------------------------------------------------------------------- /templates/project/widgets/number/number.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/number/number.scss -------------------------------------------------------------------------------- /templates/project/widgets/text/text.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/text/text.coffee -------------------------------------------------------------------------------- /templates/project/widgets/text/text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/text/text.html -------------------------------------------------------------------------------- /templates/project/widgets/text/text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/project/widgets/text/text.scss -------------------------------------------------------------------------------- /templates/widget/%name%/%name%.coffee.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/templates/widget/%name%/%name%.coffee.tt -------------------------------------------------------------------------------- /templates/widget/%name%/%name%.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /templates/widget/%name%/%name%.scss.tt: -------------------------------------------------------------------------------- 1 | .widget-<%= Dashing::CLI.hyphenate(name) %> { 2 | 3 | } -------------------------------------------------------------------------------- /test/app_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/test/app_test.rb -------------------------------------------------------------------------------- /test/cli_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/test/cli_test.rb -------------------------------------------------------------------------------- /test/downloader_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/test/downloader_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Smashing/smashing/HEAD/test/test_helper.rb --------------------------------------------------------------------------------