-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrails_events.gemspec
24 lines (20 loc) · 1.39 KB
/
rails_events.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "rails_events/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "rails_events"
s.version = RailsEvents::VERSION
s.authors = ["Danny Burt"]
s.email = ["[email protected]"]
s.homepage = "http://www.Dbz.rocks"
s.summary = "Add Backbone style events without using the whole framework. This will provide a bare bones micro front-end framework for developing multi-page Rails applications with Javascript or CoffeeScript. See https://github.com/Dbz/rails_events for more information"
s.description = "Add Backbone style events without using the whole framework. This will provide a bare bones micro front-end framework for developing multi-page Rails applications with Javascript or CoffeeScript. This will increase the speed of all event based development, creation of dynamic content, and will add clear organization to Javascript/Coffeescript files. See https://github.com/Dbz/rails_events for more information"
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["test/**/*"]
s.add_dependency "underscore-rails", "~> 0"
s.add_dependency "underscore-string-rails", "~> 0"
s.add_dependency "rails", "~> 4"
s.add_dependency "jquery-rails", "~> 0"
end