-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrim_spaces_for.gemspec
30 lines (24 loc) · 1.17 KB
/
trim_spaces_for.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "trim_spaces_for/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "trim_spaces_for"
s.version = TrimSpacesFor::VERSION
s.authors = ["Takumi Miura"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/mitaku/trim_spaces_for"
s.summary = "TrimSpacesFor gem removes leading and trailing white spaces from the AR attribute values."
s.description = "TrimSpacesFor gem removes leading and trailing white spaces from the AR attribute values."
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md"]
s.add_dependency 'rails', ['>= 3.1.0']
s.add_development_dependency 'bundler', ['>= 1.0.0']
s.add_development_dependency 'sqlite3', ['>= 0']
s.add_development_dependency 'rspec', ['>= 0']
s.add_development_dependency 'rspec-rails', ['>= 0']
s.add_development_dependency 'spork', ">= 1.0.0.rc"
s.add_development_dependency 'rb-fsevent'
s.add_development_dependency 'guard-rspec'
s.add_development_dependency 'guard-spork'
s.add_development_dependency 'growl'
end