Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic.gemspec
More file actions
Latest commit
28 lines (22 loc) · 922 Bytes
/
Copy pathbasic.gemspec
File metadata and controls
28 lines (22 loc) · 922 Bytes
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
$:.pushFile.expand_path('../lib',__FILE__)
# Maintain your gem's version:
require'basic/version'
# Describe your gem and declare its dependencies:
Gem::Specification.newdo |s|
s.name='basic'
s.version=Basic::VERSION
s.authors='Jason L Perry'
s.email='jasper@ambethia.com'
s.homepage='https://github.com/grays/basic'
s.summary='Boilerplate for Rails apps'
s.description=<<-EOF
Boilerplate for building Rails apps. An opinionated framework for quickly building up common features like: CRUD,
pagination, background workers, search, default views and sortable tables.
EOF
s.files=Dir['{app,config,db,lib}/**/*','MIT-LICENSE','Rakefile','README.rdoc']
s.test_files=Dir['test/**/*']
s.add_dependency'rails','~> 4.0.0'
s.add_dependency'inherited_resources'
s.add_dependency'haml-rails'
s.add_development_dependency'sqlite3'
end