diff options
author | Teddy Wing | 2017-05-09 20:49:30 +0200 |
---|---|---|
committer | Teddy Wing | 2017-05-09 20:49:30 +0200 |
commit | 3af76be45efa59b8abf7d8e425b6aee60a27ec3f (patch) | |
tree | fad148d43fcf12d65a69df5c461df51cf66418e0 | |
parent | a44b2adbabb41eabe659f8b461fc1a2a9ece7f12 (diff) | |
download | dbshell-rails-3af76be45efa59b8abf7d8e425b6aee60a27ec3f.tar.bz2 |
version.rb: Use single quotes
Match the style in the rest of the project.
-rw-r--r-- | lib/dbshell/rails/version.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dbshell/rails/version.rb b/lib/dbshell/rails/version.rb index 4728e94..84e0d07 100644 --- a/lib/dbshell/rails/version.rb +++ b/lib/dbshell/rails/version.rb @@ -1,5 +1,5 @@ module DBShell module Rails - VERSION = "0.0.1" + VERSION = '0.0.1' end end |