aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2015-07-08 16:29:05 +0200
committerDavid Heinemeier Hansson <david@loudthinking.com>2015-07-08 16:54:36 +0200
commitbd63093304eba598e4a6f2a535624f188fcf1ca5 (patch)
treebe2ef649cc85c3697bc2f9df3427d601bbe25b0e
parentcda749243087ca5813e6c0f859ae08fe4fa9596c (diff)
downloadrails-bd63093304eba598e4a6f2a535624f188fcf1ca5.tar.gz
rails-bd63093304eba598e4a6f2a535624f188fcf1ca5.tar.bz2
rails-bd63093304eba598e4a6f2a535624f188fcf1ca5.zip
Follow the Rails name convention of single word framework names
-rw-r--r--actioncable.gemspec (renamed from action_cable.gemspec)2
-rw-r--r--lib/actioncable.rb2
2 files changed, 3 insertions, 1 deletions
diff --git a/action_cable.gemspec b/actioncable.gemspec
index 19969378c5..5fdca0b4ff 100644
--- a/action_cable.gemspec
+++ b/actioncable.gemspec
@@ -1,5 +1,5 @@
Gem::Specification.new do |s|
- s.name = 'action_cable'
+ s.name = 'actioncable'
s.version = '0.1.0'
s.summary = 'Websockets framework for Rails.'
s.description = 'Structure many real-time application concerns into channels over a single websockets connection.'
diff --git a/lib/actioncable.rb b/lib/actioncable.rb
new file mode 100644
index 0000000000..f6df6fd063
--- /dev/null
+++ b/lib/actioncable.rb
@@ -0,0 +1,2 @@
+# Pointer for auto-require
+require 'action_cable' \ No newline at end of file