-
Notifications
You must be signed in to change notification settings - Fork 0
/
expose.gemspec
26 lines (21 loc) · 956 Bytes
/
expose.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "expose/version"
Gem::Specification.new do |s|
s.name = "expose"
s.version = Expose::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Mark G"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/attack/expose"
s.summary = %q{Simple dynamic configuration of mass-assignment security}
s.description = %q{Simple dynamic configuration of mass-assignment security, specifically attr_protected and attr_accessible}
s.rubyforge_project = "expose"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency("rails", "~> 3.0")
s.add_development_dependency("rspec", "~> 2.6")
s.add_development_dependency('sqlite3-ruby')
end