1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Follow the Rails name convention of single word framework names

This commit is contained in:
David Heinemeier Hansson 2015-07-08 16:29:05 +02:00
parent cda7492430
commit bd63093304
2 changed files with 3 additions and 1 deletions

View file

@ -1,5 +1,5 @@
Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = 'action_cable' s.name = 'actioncable'
s.version = '0.1.0' s.version = '0.1.0'
s.summary = 'Websockets framework for Rails.' s.summary = 'Websockets framework for Rails.'
s.description = 'Structure many real-time application concerns into channels over a single websockets connection.' s.description = 'Structure many real-time application concerns into channels over a single websockets connection.'

2
lib/actioncable.rb Normal file
View file

@ -0,0 +1,2 @@
# Pointer for auto-require
require 'action_cable'