summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTyler Mauthe <me@tylermauthe.com>2016-10-23 14:42:17 -0700
committerTyler Mauthe <me@tylermauthe.com>2016-10-23 14:42:17 -0700
commitb1e2589e00197de598215c6504c7714998d3f095 (patch)
treebf8375d5d2b05740fa03a056d78c672c883e9e1f
parent3d0b97e8feec98bd5f222e325f1c8717ac308832 (diff)
Renamed to Smashing
-rw-r--r--CONTRIBUTING.md19
-rw-r--r--README.md10
-rwxr-xr-xbin/smashing (renamed from bin/dashing)0
-rw-r--r--smashing.gemspec (renamed from dashing.gemspec)15
-rw-r--r--templates/project/Gemfile2
-rw-r--r--templates/project/README.md2
6 files changed, 20 insertions, 28 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index d6deb4c..b7e4dfe 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,21 +1,14 @@
# Welcome!
-Thank you for your interest in Dashing! This exceptionally handsome
-framework welcomes all input, but being stylish requires certain
-protocols be followed. :bowtie:
-
-Below you will find a set of guidelines that will ensure the best outcome
-for you _and_ Dashing.
+Thank you for your interest in Smashing! This project is a fork of Dashing, the exceptionally handsome dashboard framework. We're still in the process of transitioning, so please excuse the mess.
<a name="issues"></a>
## Have an Issue
-If you run into problems with Dashing, please take these steps before
+If you run into problems with Smashing (or Dashing), please take these steps before
submitting an issue:
-1. Check the [Troubleshooting Guide](https://github.com/Shopify/dashing/wiki#how-tos) in the wiki.
+1. Check the [Troubleshooting Guide](https://github.com/Dashing-io/dashing/wiki#how-tos) in the wiki.
2. Use the [GitHub Issue Search](https://help.github.com/articles/searching-issues/) to check if the issue has already been reported.
-3. Submit your issue to our Issue Tracker. Please provide as much helpful information as possible, preferably making use of a [reduced test case](https://www.google.ca/search?#q=reduced%20test%20case).
-
-**Support requests should be directed to [Stack Overflow](http://stackoverflow.com/questions/tagged/dashing).**
+3. Submit your issue to our Issue Tracker. Please provide as much helpful information as possible, preferably making use of a [reduced test case](https://developer.mozilla.org/en-US/docs/Mozilla/QA/Reducing_testcases).
<a name="features"></a>
## Feature Requests
@@ -26,10 +19,10 @@ in every possible edge case will only make it more difficult to understand, main
and hack on.
If you feel that you have a really amazing, super neato idea that doesn't
-quite fit with the core use of Dashing, it may be a good candidate for an
+quite fit with the core use of Smashing, it may be a good candidate for an
external Gem which supercharges a project. An excellent example of this is
[dashing-contrib](https://github.com/QubitProducts/dashing-contrib). If you
-do create a third-party extension for Dashing, please add it [here](https://github.com/Shopify/dashing/wiki/Additional-Widgets#other-third-party-tools).
+do create a third-party extension for Smashing, please add it [here](https://github.com/Dashing-io/dashing/wiki/Additional-Widgets#other-third-party-tools).
<a name="pull-requests"></a>
## Pull Requests
diff --git a/README.md b/README.md
index 36f89e9..81d71c7 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,10 @@
-# [Dashing](https://github.com/dashing-io/dashing/wiki)
+# [Smashing](https://github.com/dashing-io/dashing/wiki)
-Dashing is a Sinatra based framework that lets you build beautiful dashboards. It looks especially great on TVs.
+Smashing, the spiritual successor to Dashing, is a Sinatra based framework that lets you build excellent dashboards. It looks especially great on TVs.
-[Check out wiki](https://github.com/dashing-io/dashing/wiki).
+[Check out our wiki](https://github.com/dashing-io/dashing/wiki).
-Note: This is a fork of the original Dashing project. The original is no longer being maintained, hence this version. Read about it [here](https://github.com/Shopify/dashing/issues/711).
+Note: This is a fork of the Dashing project, which is no longer being maintained. Read about that [here](https://github.com/Shopify/dashing/issues/711).
# License
-Distributed under the [MIT license](MIT-LICENSE)
+Distributed under the [MIT license](MIT-LICENSE).
diff --git a/bin/dashing b/bin/smashing
index cce9340..cce9340 100755
--- a/bin/dashing
+++ b/bin/smashing
diff --git a/dashing.gemspec b/smashing.gemspec
index f7b266e..8be031c 100644
--- a/dashing.gemspec
+++ b/smashing.gemspec
@@ -1,17 +1,16 @@
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
- s.name = 'dashing'
- s.version = '1.3.6'
- s.date = '2015-04-11'
- s.executables = %w(dashing)
+ s.name = 'smashing'
+ s.version = '1.0.0'
+ s.date = '2016-10-23'
+ s.executables = %w(smashing)
- s.summary = "The exceptionally handsome dashboard framework."
- s.description = "This framework lets you build & easily layout dashboards with your own custom widgets. Use it to make a status boards for your ops team, or use it to track signups, conversion rates, or whatever else metrics you'd like to see in one spot. Included with the framework are ready-made widgets for you to use or customize. All of this code was extracted out of a project at Shopify that displays dashboards on TVs around the office."
+ s.summary = "The wonderfully excellent dashboard framework."
+ s.description = "A framework for pulling together an overview of data that is important to your team and displaying it easily on TVs around the office. You write a bit of ruby code to gather data from some services and let Smashing handle the rest - displaying that data in a wonderfully simple layout. Built for developers and hackers, Smashing is highly customizable while maintaining humble roots that make it approachable to beginners."
s.author = "Daniel Beauchamp"
- s.email = 'daniel.beauchamp@shopify.com'
- s.homepage = 'http://shopify.github.com/dashing'
+ s.homepage = 'http://smashing.github.io'
s.license = "MIT"
s.files = Dir['README.md', 'javascripts/**/*', 'templates/**/*','templates/**/.[a-z]*', 'lib/**/*']
diff --git a/templates/project/Gemfile b/templates/project/Gemfile
index 1235b37..46fea32 100644
--- a/templates/project/Gemfile
+++ b/templates/project/Gemfile
@@ -1,6 +1,6 @@
source 'https://rubygems.org'
-gem 'dashing'
+gem 'smashing'
## Remove this if you don't need a twitter widget.
gem 'twitter', '>= 5.9.0' \ No newline at end of file
diff --git a/templates/project/README.md b/templates/project/README.md
index 260ac2a..d041f84 100644
--- a/templates/project/README.md
+++ b/templates/project/README.md
@@ -1 +1 @@
-Check out http://shopify.github.com/dashing for more information. \ No newline at end of file
+Check out http://smashing.github.io/ for more information. \ No newline at end of file