forked from bowsersenior/workflow_on_mongoid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkflow_on_mongoid.gemspec
32 lines (26 loc) · 1.16 KB
/
workflow_on_mongoid.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
28
29
30
31
32
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'workflow_on_mongoid/version'
Gem::Specification.new do |s|
s.name = "workflow_on_mongoid"
s.version = WorkflowOnMongoid::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Mani Tadayon"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/bowsersenior/workflow_on_mongoid"
s.summary = "Add Mongoid support to the Workflow gem."
s.description = "Lets you use the Workflow gem with your Mongoid documents to add state machine functionality."
s.required_rubygems_version = ">= 1.3.7"
s.add_dependency "workflow", '~>0.8'
s.add_dependency "mongoid", '~>2.0.0.rc'
s.add_dependency "bson_ext", '~>1.1'
s.add_development_dependency "rake", '0.8.7'
s.add_development_dependency "rspec", '~>2.0.0.rc'
s.add_development_dependency "activerecord"
s.add_development_dependency "sqlite3-ruby"
s.add_development_dependency "mocha"
s.add_development_dependency "ruby-debug"
s.files = Dir.glob("{bin,lib}/**/*") + %w(MIT_LICENSE README.rdoc)
s.require_path = 'lib'
end