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 | |
| download | inboxes-a99eda077cd84e42bb526ffecc4bc59c4c1929de.tar.bz2 | |
Initial commit
| -rw-r--r-- | .gitignore | 4 | ||||
| -rw-r--r-- | Gemfile | 4 | ||||
| -rw-r--r-- | Rakefile | 1 | ||||
| -rw-r--r-- | inboxes.gemspec | 24 | ||||
| -rw-r--r-- | lib/inboxes.rb | 5 | ||||
| -rw-r--r-- | lib/inboxes/version.rb | 3 |
6 files changed, 41 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4040c6c --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.gem +.bundle +Gemfile.lock +pkg/* @@ -0,0 +1,4 @@ +source "http://rubygems.org" + +# Specify your gem's dependencies in inboxes.gemspec +gemspec diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..2995527 --- /dev/null +++ b/Rakefile @@ -0,0 +1 @@ +require "bundler/gem_tasks" 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 diff --git a/lib/inboxes.rb b/lib/inboxes.rb new file mode 100644 index 0000000..2720101 --- /dev/null +++ b/lib/inboxes.rb @@ -0,0 +1,5 @@ +require "inboxes/version" + +module Inboxes + # Your code goes here... +end diff --git a/lib/inboxes/version.rb b/lib/inboxes/version.rb new file mode 100644 index 0000000..52f1899 --- /dev/null +++ b/lib/inboxes/version.rb @@ -0,0 +1,3 @@ +module Inboxes + VERSION = "0.0.1" +end |
