-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwagons.gemspec
27 lines (20 loc) · 938 Bytes
/
wagons.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
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
# Maintain your gem's version:
require 'wagons/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'wagons'
s.version = Wagons::VERSION
s.authors = ['Pascal Zumkehr']
s.email = ['spam@codez.ch']
s.homepage = 'http://github.com/puzzle/wagons'
s.summary = 'Wagons are extensions to your application train running on Rails.'
s.description = 'Wagons are plugins that extend your specific Rails application. This framework makes it easy to create and manage them.'
s.files = Dir['lib/**/{*,.[a-z]*}'] + ['MIT-LICENSE', 'Rakefile', 'README.md']
s.test_files = Dir['test/**/*']
s.add_dependency 'bundler', '>= 2.0'
s.add_dependency 'rails', '>= 6.1'
s.add_dependency 'seed-fu-ndo', '>= 0.0.3'
s.add_development_dependency 'open4'
s.add_development_dependency 'sqlite3', '~> 1.4'
end