-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmongoid_noteable.gemspec
More file actions
27 lines (23 loc) · 1.02 KB
/
mongoid_noteable.gemspec
File metadata and controls
27 lines (23 loc) · 1.02 KB
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 "mongoid_noteable/version"
Gem::Specification.new do |s|
s.name = "mongoid_noteable"
s.version = Mongoid::Noteable::VERSION
s.date = "2011-07-04"
s.authors = ["Jie Fan"]
s.email = ["ustc.flyingfox@gmail.com"]
s.homepage = "https://github.com/lastomato/mongoid_noteable"
s.summary = %q{ adds news feature to models }
s.description = %q{ Mongoid Noteable adds news feature to models }
s.rubyforge_project = "mongoid_noteable"
s.add_dependency("mongoid", "~> 2.0.1")
s.add_dependency("bson_ext", "~> 1.3.0")
s.add_dependency("mongoid_followable", "~> 0.1.1")
s.add_development_dependency("database_cleaner", "~> 0.6")
s.add_development_dependency("rspec", "~> 2.6")
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"]
end