-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplaymo.gemspec
More file actions
27 lines (24 loc) · 992 Bytes
/
playmo.gemspec
File metadata and controls
27 lines (24 loc) · 992 Bytes
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "playmo/version"
Gem::Specification.new do |s|
s.version = Playmo::VERSION
s.name = "playmo"
s.platform = Gem::Platform::RUBY
s.authors = ["Andrew Kozloff"]
s.email = ["demerest@gmail.com"]
s.homepage = "https://github.com/tanraya/playmo"
s.summary = %q{Special kit that allows you create html5-ready Rails 3 apps quick with pre-included few useful libs in your app}
s.rubyforge_project = "playmo"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = ['playmo']
s.require_paths = ["lib"]
s.has_rdoc = false
s.rubygems_version = %q{1.8.15}
s.add_dependency("rails", ["~>3.1"])
s.add_dependency("ruby_events")
s.add_dependency("haml2slim", ["~>0.4.6"])
s.add_dependency("haml", ["~>3.1.4"])
s.add_development_dependency("rspec-rails", ["~>2.8.1"])
end