diff options
| author | Kir | 2011-10-26 17:31:57 +0400 |
|---|---|---|
| committer | Kir | 2011-10-26 17:31:57 +0400 |
| commit | a99eda077cd84e42bb526ffecc4bc59c4c1929de (patch) | |
| tree | 20274ad0a27121510361a90b4e7817491f21b25a /inboxes.gemspec | |
| download | inboxes-a99eda077cd84e42bb526ffecc4bc59c4c1929de.tar.bz2 | |
Initial commit
Diffstat (limited to 'inboxes.gemspec')
| -rw-r--r-- | inboxes.gemspec | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/inboxes.gemspec b/inboxes.gemspec new file mode 100644 index 0000000..4587ed8 --- /dev/null +++ b/inboxes.gemspec @@ -0,0 +1,24 @@ +# -*- encoding: utf-8 -*- +$:.push File.expand_path("../lib", __FILE__) +require "inboxes/version" + +Gem::Specification.new do |s| + s.name = "inboxes" + s.version = Inboxes::VERSION + s.authors = ["Kir Shatrov"] + s.email = ["razor.psp@gmail.com"] + s.homepage = "" + s.summary = %q{Messaging system for Rails 3 app} + s.description = %q{Messaging system for Rails 3 app} + + s.rubyforge_project = "inboxes" + + s.files = `git ls-files`.split("\n") + s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") + s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } + s.require_paths = ["lib"] + + # specify any dependencies here; for example: + # s.add_development_dependency "rspec" + # s.add_runtime_dependency "rest-client" +end |
