-
Notifications
You must be signed in to change notification settings - Fork 17
/
workflow_on_mongoid.gemspec
32 lines (26 loc) · 1.13 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
# -*- 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.add_dependency "workflow", '~>1.0'
s.add_dependency "mongoid"
s.add_development_dependency "rake"
s.add_development_dependency "rspec", '>=2.6.0'
s.add_development_dependency "activerecord"
s.add_development_dependency "mocha"
s.required_rubygems_version = ">= 1.3.7"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.extra_rdoc_files = ["MIT_LICENSE", "README.rdoc"]
s.rdoc_options = ["--charset=UTF-8"]
s.require_path = "lib"
end