-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvaluable.gemspec
More file actions
23 lines (17 loc) · 821 Bytes
/
valuable.gemspec
File metadata and controls
23 lines (17 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$:.push File.expand_path("../lib", __FILE__)
version = File.read(File.expand_path("../valuable.version",__FILE__)).strip
spec = Gem::Specification.new do |s|
s.name = 'valuable'
s.version = version
s.summary = "attr_accessor on steroids with defaults, attribute formatting, alias methods, etc."
s.description = "Valuable is a ruby base class that is essentially attr_accessor on steroids. A simple and intuitive interface allows you to get on with modeling in your app."
s.license = 'MIT'
s.require_path = 'lib'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.has_rdoc = true
s.authors = ["Johnathon Wright"]
s.email = "jw@mustmodify.com"
s.homepage = "http://valuable.mustmodify.com/"
end