-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathbookable.gemspec
27 lines (22 loc) · 1.31 KB
/
bookable.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
25
26
27
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bookable/version'
Gem::Specification.new do |spec|
spec.name = "bookable"
spec.version = Bookable::VERSION
spec.authors = ["Srikanth", "Margo", "Jon"]
spec.description = %q{a bookings reservation gem for rails 4.0}
spec.summary = %q{Bookable is a Rails 4.0 gem that enables you to add resource booking functionality to your Rails application. A resource can be anything that is bookable e.g. tennis court, football pitch, bowling lane, function room, conference room, office space. }
spec.homepage = "https://github.com/kunks001/bookable"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib","lib/bookable","lib/bookable/generators", "lib/bookable/generators/bookable"]
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
spec.add_dependency 'jbuilder', '~> 1.2'
spec.add_dependency 'rails_12factor'
end