forked from praxis/praxis-blueprints
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpraxis-blueprints.gemspec
51 lines (45 loc) · 2.22 KB
/
praxis-blueprints.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# frozen_string_literal: true
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'praxis-blueprints/version'
Gem::Specification.new do |spec|
spec.name = 'praxis-blueprints'
spec.version = Praxis::BLUEPRINTS_VERSION
spec.authors = ['Josep M. Blanquer', 'Dane Jensen']
spec.summary = 'Attributes, views, rendering and example generation for common Blueprint Structures.'
spec.description = <<-EOF
Praxis Blueprints is a library that allows for defining a reusable class
structures that has a set of typed attributes and a set of views with which
to render them. Instantiations of Blueprints resemble ruby Structs which
respond to methods of the attribute names. Rendering is format-agnostic in
that it results in a structured hash instead of an encoded string.
Blueprints can automatically generate object structures that follow the
attribute definitions.
EOF
spec.email = ['[email protected]', '[email protected]']
spec.homepage = 'https://github.com/rightscale/praxis-blueprints'
spec.license = 'MIT'
spec.required_ruby_version = '>=2.1'
spec.files = `git ls-files -z`.split("\x0")
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_runtime_dependency('randexp', ['~> 0'])
spec.add_runtime_dependency('attributor', ['>= 5.5'])
spec.add_runtime_dependency('activesupport', ['>= 3'])
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'
spec.add_development_dependency('redcarpet', ['< 3.0'])
spec.add_development_dependency('yard')
spec.add_development_dependency('guard', ['~> 2'])
spec.add_development_dependency('guard-rspec', ['>= 0'])
spec.add_development_dependency('rspec')
spec.add_development_dependency('rspec-its')
spec.add_development_dependency('rspec-collection_matchers')
spec.add_development_dependency('pry')
spec.add_development_dependency('pry-byebug')
spec.add_development_dependency('pry-stack_explorer')
spec.add_development_dependency('fuubar')
spec.add_development_dependency('coveralls')
spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'guard-rubocop'
end