-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfactory_fixtures.gemspec
More file actions
21 lines (20 loc) · 1001 Bytes
/
factory_fixtures.gemspec
File metadata and controls
21 lines (20 loc) · 1001 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
# If you add a development dependency, please maintain alphabetical order
# If you add a runtime dependency, please maintain alphabetical order
s.add_runtime_dependency('factory_girl_rails', '~> 1.0.1')
s.add_runtime_dependency('rails', '~> 3.0.3')
s.authors = ["snmgian"]
s.email = ['snmgian@gmail.com', 'gian.zas@moove-it.com']
s.files = Dir['Gemfile', 'LICENSE.mkd', 'README.mkd', 'Rakefile', 'app/**/*', 'config/**/*', 'lib/**/*', 'public/**/*']
s.name = 'factory_fixtures'
s.platform = Gem::Platform::RUBY
s.rdoc_options = ['--charset=UTF-8']
s.require_paths = ['lib']
s.required_rubygems_version = Gem::Requirement.new('>= 1.3.6') if s.respond_to? :required_rubygems_version=
s.summary = %q{Factory girl fixtures for Rails}
# FIXME: this should reference NumerexFixtures::VERSION but because of
# http://jira.codehaus.org/browse/JRUBY-5319 we can't use "require"
# in our gemspec
s.version = '0.0.1'
end