publican_creators 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/.autotest +25 -0
- data/.codeclimate.yml +8 -0
- data/.coveralls.yml +1 -0
- data/.gemnasium.yml +5 -0
- data/.gemrelease +4 -0
- data/.gemtest +0 -0
- data/.index +121 -0
- data/.rspec +2 -0
- data/.rubocop.yml +40 -0
- data/.scrutinizer.yml +17 -0
- data/.travis.yml +36 -0
- data/.yardopts +9 -0
- data/CODE_OF_CONDUCT.md +17 -0
- data/CONTRIBUTING.md +25 -0
- data/Gemfile +35 -0
- data/Gemfile.lock +139 -0
- data/History.rdoc +166 -0
- data/Index.yml +60 -0
- data/LICENSE.rdoc +24 -0
- data/Manifest.txt +41 -0
- data/README.rdoc +108 -0
- data/Rakefile +139 -0
- data/VERSION +1 -0
- data/bin/publican_creators.rb +6 -0
- data/bin/revision_creator.rb +9 -0
- data/config.reek +111 -0
- data/data/publican_creators/publican-revision.png +0 -0
- data/data/publican_creators/publican.png +0 -0
- data/etc/publicancreators.cfg +85 -0
- data/lib/PublicanCreators.rb +233 -0
- data/lib/publican_creators/change.rb +309 -0
- data/lib/publican_creators/checker.rb +48 -0
- data/lib/publican_creators/create.rb +125 -0
- data/lib/publican_creators/export.rb +230 -0
- data/lib/publican_creators/get.rb +66 -0
- data/lib/publican_creators/notifier.rb +26 -0
- data/lib/publican_creators/prepare.rb +82 -0
- data/lib/publican_creators/revision.rb +61 -0
- data/lib/publican_creators/testlib.rb +30 -0
- data/spec/lib_spec.rb +401 -0
- data/spec/spec_helper.rb +16 -0
- metadata +489 -0
- metadata.gz.sig +0 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 8065ae6ac68fc4e5d8f543167d3a3278d33e65e1
|
4
|
+
data.tar.gz: b0341e202c8e018e5232fef0f2bfd1e1bf8bc801
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d8ace51654dd9b5bc94ffc92f364dee2f30b9491c2e02d9e1a6ec84273f57e8a05365c7e1dba62cf44041eaa6cc10c772b73389d41eb1678e50dae23f98a83e9
|
7
|
+
data.tar.gz: 686440c9ab24d9ebb5d818981baf3e563c8f141a4e1551d62c8b92eef9ad563a0e36e9c6f16f90e7b93359fa8d06ab2d4a65755069e150da2fad3f60fa935b2f
|
checksums.yaml.gz.sig
ADDED
Binary file
|
data.tar.gz.sig
ADDED
Binary file
|
data/.autotest
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# -*- ruby -*-
|
2
|
+
|
3
|
+
require "autotest/restart"
|
4
|
+
|
5
|
+
# Autotest.add_hook :initialize do |at|
|
6
|
+
# at.testlib = "minitest/unit"
|
7
|
+
#
|
8
|
+
# at.extra_files << "../some/external/dependency.rb"
|
9
|
+
#
|
10
|
+
# at.libs << ":../some/external"
|
11
|
+
#
|
12
|
+
# at.add_exception "vendor"
|
13
|
+
#
|
14
|
+
# at.add_mapping(/dependency.rb/) do |f, _|
|
15
|
+
# at.files_matching(/test_.*rb$/)
|
16
|
+
# end
|
17
|
+
#
|
18
|
+
# %w(TestA TestB).each do |klass|
|
19
|
+
# at.extra_class_map[klass] = "test/test_misc.rb"
|
20
|
+
# end
|
21
|
+
# end
|
22
|
+
|
23
|
+
# Autotest.add_hook :run_command do |at|
|
24
|
+
# system "rake build"
|
25
|
+
# end
|
data/.codeclimate.yml
ADDED
data/.coveralls.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
service_name: travis-ci
|
data/.gemnasium.yml
ADDED
@@ -0,0 +1,5 @@
|
|
1
|
+
# api_endpoint: http://private-77f5-gemnasium.apiary-mock.com
|
2
|
+
api_key: c916184c3e0892558476535b216f7442 # You personal (secret) API key. Get it at https://gemnasium.com/settings/api_access
|
3
|
+
project_name: publican_creators # A name to remember your project.
|
4
|
+
project_slug: saigkill/publican_creators # Unique slug for this project. Get it on the "project settings" page.
|
5
|
+
project_branch: master # /!\ If you don't use git, remove this line
|
data/.gemrelease
ADDED
data/.gemtest
ADDED
File without changes
|
data/.index
ADDED
@@ -0,0 +1,121 @@
|
|
1
|
+
---
|
2
|
+
revision: 2013
|
3
|
+
type: ruby
|
4
|
+
sources:
|
5
|
+
- VERSION
|
6
|
+
- Index.yml
|
7
|
+
authors:
|
8
|
+
- name: Sascha Manns
|
9
|
+
email: samannsml@directbox.com
|
10
|
+
organizations: []
|
11
|
+
requirements:
|
12
|
+
- name: nokogiri
|
13
|
+
- name: parseconfig
|
14
|
+
- name: rainbow
|
15
|
+
- name: MannsShared
|
16
|
+
- name: setup
|
17
|
+
- name: notifier
|
18
|
+
- groups:
|
19
|
+
- build
|
20
|
+
development: true
|
21
|
+
name: rake
|
22
|
+
- groups:
|
23
|
+
- build
|
24
|
+
development: true
|
25
|
+
name: bundler
|
26
|
+
- groups:
|
27
|
+
- build
|
28
|
+
development: true
|
29
|
+
name: rdoc
|
30
|
+
- groups:
|
31
|
+
- build
|
32
|
+
development: true
|
33
|
+
name: yard
|
34
|
+
- groups:
|
35
|
+
- build
|
36
|
+
development: true
|
37
|
+
name: gem-release
|
38
|
+
- groups:
|
39
|
+
- build
|
40
|
+
development: true
|
41
|
+
name: rubocop
|
42
|
+
- groups:
|
43
|
+
- build
|
44
|
+
development: true
|
45
|
+
name: reek
|
46
|
+
- groups:
|
47
|
+
- build
|
48
|
+
development: true
|
49
|
+
name: ruby-lint
|
50
|
+
- groups:
|
51
|
+
- build
|
52
|
+
development: true
|
53
|
+
name: indexer
|
54
|
+
- groups:
|
55
|
+
- build
|
56
|
+
development: true
|
57
|
+
name: mast
|
58
|
+
- groups:
|
59
|
+
- test
|
60
|
+
development: true
|
61
|
+
name: test
|
62
|
+
- groups:
|
63
|
+
- test
|
64
|
+
development: true
|
65
|
+
name: coveralls
|
66
|
+
- groups:
|
67
|
+
- test
|
68
|
+
development: true
|
69
|
+
name: rspec
|
70
|
+
- groups:
|
71
|
+
- test
|
72
|
+
development: true
|
73
|
+
name: shoulda
|
74
|
+
- groups:
|
75
|
+
- test
|
76
|
+
development: true
|
77
|
+
name: simplecov
|
78
|
+
conflicts: []
|
79
|
+
alternatives: []
|
80
|
+
resources:
|
81
|
+
- type: home
|
82
|
+
uri: http://saigkill.github.io
|
83
|
+
label: Homepage
|
84
|
+
- type: code
|
85
|
+
uri: https://github.com/saigkill/PublicanCreators
|
86
|
+
label: Source Code
|
87
|
+
- type: bugs
|
88
|
+
uri: http://saigkill-bugs.myjetbrains.com/youtrack
|
89
|
+
label: Issue Tracker
|
90
|
+
- type: issues
|
91
|
+
uri: http://saigkill-bugs.myjetbrains.com/youtrack
|
92
|
+
label: Issue Tracker
|
93
|
+
repositories:
|
94
|
+
- name: upstream
|
95
|
+
scm: git
|
96
|
+
uri: https://github.com/saigkill/PublicanCreators.git
|
97
|
+
categories:
|
98
|
+
- publican
|
99
|
+
- docbook
|
100
|
+
copyrights:
|
101
|
+
- holder: Sascha Manns
|
102
|
+
year: '2015'
|
103
|
+
license: GPL3
|
104
|
+
customs: []
|
105
|
+
paths:
|
106
|
+
lib:
|
107
|
+
- lib
|
108
|
+
version: 0.4.14
|
109
|
+
name: publicancreators
|
110
|
+
title: Publicancreators
|
111
|
+
summary: Program for controlling Publican
|
112
|
+
description: PublicanCreators are a small tool for daily DocBook writers who are using
|
113
|
+
the Redhat publican tool [https://fedorahosted.org/publican/]. PublicanCreators
|
114
|
+
asks after launching which title, type and environment should be used. Then it starts
|
115
|
+
publican with that settings and works then with the produced files. It will work
|
116
|
+
inside the Article_Info.xml, Book_Info.xml, TITLE.ent, Author_Group.xml and Revision_History.xml
|
117
|
+
and will replace the default values with your name, you company, your company_divison
|
118
|
+
and your private or your business email address, depending on your chosen environment.
|
119
|
+
Also you can set inside your config fil that you want to remove the Title Logo or
|
120
|
+
the Legal Notice. As a feature it ships a build script for each project.
|
121
|
+
date: '2015-09-10'
|
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
AllCops:
|
2
|
+
|
3
|
+
Include:
|
4
|
+
- 'lib/**/*.rb'
|
5
|
+
- 'test/**/*.rb'
|
6
|
+
|
7
|
+
Exclude:
|
8
|
+
- 'Rakefile'
|
9
|
+
- 'test/The_holy_Bible/*'
|
10
|
+
|
11
|
+
DisplayCopNames: true
|
12
|
+
|
13
|
+
Metrics/LineLength:
|
14
|
+
Enabled: true
|
15
|
+
Max: 80
|
16
|
+
|
17
|
+
Metrics/CyclomaticComplexity:
|
18
|
+
Severity: warning
|
19
|
+
|
20
|
+
Style/PerlBackrefs:
|
21
|
+
AutoCorrect: true
|
22
|
+
|
23
|
+
Metrics/ParameterLists:
|
24
|
+
Max: 10
|
25
|
+
CountKeywordArgs: true
|
26
|
+
|
27
|
+
Metrics/ClassLength:
|
28
|
+
CountComments: false # count full line comments?
|
29
|
+
Max: 150
|
30
|
+
|
31
|
+
Metrics/ModuleLength:
|
32
|
+
CountComments: false # count full line comments?
|
33
|
+
Max: 190
|
34
|
+
|
35
|
+
Metrics/MethodLength:
|
36
|
+
CountComments: false # count full line comments?
|
37
|
+
Max: 20
|
38
|
+
|
39
|
+
Style/RedundantReturn:
|
40
|
+
Enabled: false
|
data/.scrutinizer.yml
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
checks:
|
2
|
+
ruby:
|
3
|
+
code_rating: true
|
4
|
+
duplicate_code: true
|
5
|
+
style_while_until_do: true
|
6
|
+
style_signal_exception:
|
7
|
+
enforced_style: semantic
|
8
|
+
style_redundant_exception: true
|
9
|
+
style_raise_args:
|
10
|
+
enforced_style: exploded
|
11
|
+
style_predicate_name: true
|
12
|
+
style_comment_annotation: true
|
13
|
+
rails_output: true
|
14
|
+
|
15
|
+
filter:
|
16
|
+
excluded_paths:
|
17
|
+
- 'test/*'
|
data/.travis.yml
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
language: ruby
|
2
|
+
rvm:
|
3
|
+
- 2.2.0
|
4
|
+
- 2.2.1
|
5
|
+
- 2.2.2
|
6
|
+
- 2.2.3
|
7
|
+
|
8
|
+
dist: trusty
|
9
|
+
|
10
|
+
os:
|
11
|
+
- linux
|
12
|
+
|
13
|
+
env:
|
14
|
+
global:
|
15
|
+
- JRUBY_OPTS=-Xcext.enabled=true
|
16
|
+
- CI=true
|
17
|
+
- TRAVIS=true
|
18
|
+
- LANG=en_US.UTF-8
|
19
|
+
- LC_ALL=en_US.UTF-8
|
20
|
+
|
21
|
+
before_install:
|
22
|
+
- gem install bundler
|
23
|
+
- sudo apt-get update
|
24
|
+
- sudo apt-get install software-properties-common -y
|
25
|
+
- sudo apt-get install publican
|
26
|
+
- sudo add-apt-repository ppa:sascha-manns-h/publican -y
|
27
|
+
- sudo apt-get update
|
28
|
+
- sudo apt-get install --only-upgrade publican
|
29
|
+
- sudo apt-get install publican-xcom-dummy publican-manns publican-ils -y
|
30
|
+
|
31
|
+
after_success:
|
32
|
+
- CI=true TRAVIS=true coveralls --verbose
|
33
|
+
|
34
|
+
notifications:
|
35
|
+
email:
|
36
|
+
- samannsml@directbox.com
|
data/.yardopts
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
# @markup markdown
|
2
|
+
# @title Code of Conduct
|
3
|
+
# @author Sascha Manns
|
4
|
+
|
5
|
+
# Contributor Code of Conduct
|
6
|
+
|
7
|
+
As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
|
8
|
+
|
9
|
+
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
|
10
|
+
|
11
|
+
Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
|
12
|
+
|
13
|
+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
|
14
|
+
|
15
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
|
16
|
+
|
17
|
+
This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# Contributing
|
2
|
+
|
3
|
+
## Branches
|
4
|
+
|
5
|
+
### `master` branch
|
6
|
+
|
7
|
+
The master branch is the current stable released version.
|
8
|
+
|
9
|
+
### `develop` branch
|
10
|
+
|
11
|
+
The develop branch is the current edge of development.
|
12
|
+
|
13
|
+
## Pull requests
|
14
|
+
|
15
|
+
* https://gitlab.com/saigkill/publican_creators/merge_requests
|
16
|
+
|
17
|
+
Please base all pull requests off the `develop` branch. Merges to
|
18
|
+
`master` only occur through the `develop` branch. Pull requests
|
19
|
+
based on `master` will likely be cherry picked.
|
20
|
+
|
21
|
+
## Issues
|
22
|
+
|
23
|
+
Need to report an issue? Use that issue tracker:
|
24
|
+
|
25
|
+
* https://gitlab.com/saigkill/publican_creators/issues
|
data/Gemfile
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
# -*- ruby -*-
|
2
|
+
|
3
|
+
# DO NOT EDIT THIS FILE. Instead, edit Rakefile, and run `rake bundler:gemfile`.
|
4
|
+
|
5
|
+
source "https://rubygems.org/"
|
6
|
+
|
7
|
+
gem "setup", "~>5.2"
|
8
|
+
gem "nokogiri", "~>1.6.7"
|
9
|
+
gem "parseconfig", "~>1.0"
|
10
|
+
gem "rainbow", "~>2.1"
|
11
|
+
gem "notifier", "~>0.5"
|
12
|
+
|
13
|
+
gem "hoe-highline", "~>0.2", :group => [:development, :test]
|
14
|
+
gem "rdoc", "~>4.0", :group => [:development, :test]
|
15
|
+
gem "coveralls", "~>0.8", :group => [:development, :test]
|
16
|
+
gem "hoe-bundler", "~>1.2", :group => [:development, :test]
|
17
|
+
gem "hoe-gemspec", "~>1.0", :group => [:development, :test]
|
18
|
+
gem "hoe-git", "~>1.6", :group => [:development, :test]
|
19
|
+
gem "hoe-rubygems", "~>1.0", :group => [:development, :test]
|
20
|
+
gem "hoe-manns", "~>1.4", :group => [:development, :test]
|
21
|
+
gem "hoe-reek", "~>1.1", :group => [:development, :test]
|
22
|
+
gem "hoe-rubocop", "~>1.0", :group => [:development, :test]
|
23
|
+
gem "hoe-version", "~>1.2", :group => [:development, :test]
|
24
|
+
gem "hoe-seattlerb", "~>1.3", :group => [:development, :test]
|
25
|
+
gem "hoe", "~>3.14", :group => [:development, :test]
|
26
|
+
gem "rake", "~>10.5", :group => [:development, :test]
|
27
|
+
gem "gem-release", "~>0.7", :group => [:development, :test]
|
28
|
+
gem "indexer", "~>0.3", :group => [:development, :test]
|
29
|
+
gem "manns_shared", "~>1.0", :group => [:development, :test]
|
30
|
+
gem "bundler", "~>1.11", :group => [:development, :test]
|
31
|
+
gem "rspec", "~>3.4", :group => [:development, :test]
|
32
|
+
gem "rubocop", "~>0.36", :group => [:development, :test]
|
33
|
+
gem "simplecov", "~>0.11", :group => [:development, :test]
|
34
|
+
|
35
|
+
# vim: syntax=ruby
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,139 @@
|
|
1
|
+
GEM
|
2
|
+
remote: https://rubygems.org/
|
3
|
+
specs:
|
4
|
+
ast (2.2.0)
|
5
|
+
bundler-audit (0.4.0)
|
6
|
+
bundler (~> 1.2)
|
7
|
+
thor (~> 0.18)
|
8
|
+
coveralls (0.8.10)
|
9
|
+
json (~> 1.8)
|
10
|
+
rest-client (>= 1.6.8, < 2)
|
11
|
+
simplecov (~> 0.11.0)
|
12
|
+
term-ansicolor (~> 1.3)
|
13
|
+
thor (~> 0.19.1)
|
14
|
+
tins (~> 1.6.0)
|
15
|
+
diff-lcs (1.2.5)
|
16
|
+
docile (1.1.5)
|
17
|
+
domain_name (0.5.25)
|
18
|
+
unf (>= 0.0.5, < 1.0.0)
|
19
|
+
gem-release (0.7.4)
|
20
|
+
highline (1.7.8)
|
21
|
+
hoe (3.14.2)
|
22
|
+
rake (>= 0.8, < 11.0)
|
23
|
+
hoe-bundler (1.2.0)
|
24
|
+
hoe (>= 2.2.0)
|
25
|
+
hoe-gemspec (1.0.0)
|
26
|
+
hoe (>= 2.2.0)
|
27
|
+
hoe-git (1.6.0)
|
28
|
+
hoe-highline (0.2.1)
|
29
|
+
highline (~> 1.6)
|
30
|
+
hoe (~> 3.11)
|
31
|
+
hoe-manns (1.4.7)
|
32
|
+
bundler-audit (~> 0.4)
|
33
|
+
hoe (~> 3.14)
|
34
|
+
indexer (~> 0.3)
|
35
|
+
pandoc-ruby (~> 1.0)
|
36
|
+
parseconfig (~> 1.0)
|
37
|
+
rainbow (~> 2.1)
|
38
|
+
hoe-reek (1.1.2)
|
39
|
+
bundler (~> 1.11)
|
40
|
+
setup (~> 5.2)
|
41
|
+
hoe-rubocop (1.0.4)
|
42
|
+
bundler (~> 1.11)
|
43
|
+
hoe (~> 3.14)
|
44
|
+
rubocop (~> 0.35)
|
45
|
+
hoe-rubygems (1.0.0)
|
46
|
+
hoe-seattlerb (1.3.4)
|
47
|
+
hoe-version (1.2.0)
|
48
|
+
http-cookie (1.0.2)
|
49
|
+
domain_name (~> 0.5)
|
50
|
+
indexer (0.3.1)
|
51
|
+
json (1.8.3)
|
52
|
+
manns_shared (1.0.2)
|
53
|
+
nokogiri (~> 1.6.7)
|
54
|
+
setup (~> 5.2)
|
55
|
+
mime-types (2.99)
|
56
|
+
mini_portile2 (2.0.0)
|
57
|
+
netrc (0.11.0)
|
58
|
+
nokogiri (1.6.7.2)
|
59
|
+
mini_portile2 (~> 2.0.0.rc2)
|
60
|
+
notifier (0.5.1)
|
61
|
+
pandoc-ruby (1.0.0)
|
62
|
+
parseconfig (1.0.8)
|
63
|
+
parser (2.3.0.2)
|
64
|
+
ast (~> 2.2)
|
65
|
+
powerpack (0.1.1)
|
66
|
+
rainbow (2.1.0)
|
67
|
+
rake (10.5.0)
|
68
|
+
rdoc (4.2.1)
|
69
|
+
json (~> 1.4)
|
70
|
+
rest-client (1.8.0)
|
71
|
+
http-cookie (>= 1.0.2, < 2.0)
|
72
|
+
mime-types (>= 1.16, < 3.0)
|
73
|
+
netrc (~> 0.7)
|
74
|
+
rspec (3.4.0)
|
75
|
+
rspec-core (~> 3.4.0)
|
76
|
+
rspec-expectations (~> 3.4.0)
|
77
|
+
rspec-mocks (~> 3.4.0)
|
78
|
+
rspec-core (3.4.2)
|
79
|
+
rspec-support (~> 3.4.0)
|
80
|
+
rspec-expectations (3.4.0)
|
81
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
82
|
+
rspec-support (~> 3.4.0)
|
83
|
+
rspec-mocks (3.4.1)
|
84
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
85
|
+
rspec-support (~> 3.4.0)
|
86
|
+
rspec-support (3.4.1)
|
87
|
+
rubocop (0.36.0)
|
88
|
+
parser (>= 2.3.0.0, < 3.0)
|
89
|
+
powerpack (~> 0.1)
|
90
|
+
rainbow (>= 1.99.1, < 3.0)
|
91
|
+
ruby-progressbar (~> 1.7)
|
92
|
+
ruby-progressbar (1.7.5)
|
93
|
+
setup (5.2.0)
|
94
|
+
simplecov (0.11.1)
|
95
|
+
docile (~> 1.1.0)
|
96
|
+
json (~> 1.8)
|
97
|
+
simplecov-html (~> 0.10.0)
|
98
|
+
simplecov-html (0.10.0)
|
99
|
+
term-ansicolor (1.3.2)
|
100
|
+
tins (~> 1.0)
|
101
|
+
thor (0.19.1)
|
102
|
+
tins (1.6.0)
|
103
|
+
unf (0.1.4)
|
104
|
+
unf_ext
|
105
|
+
unf_ext (0.0.7.1)
|
106
|
+
|
107
|
+
PLATFORMS
|
108
|
+
ruby
|
109
|
+
|
110
|
+
DEPENDENCIES
|
111
|
+
bundler (~> 1.11)
|
112
|
+
coveralls (~> 0.8)
|
113
|
+
gem-release (~> 0.7)
|
114
|
+
hoe (~> 3.14)
|
115
|
+
hoe-bundler (~> 1.2)
|
116
|
+
hoe-gemspec (~> 1.0)
|
117
|
+
hoe-git (~> 1.6)
|
118
|
+
hoe-highline (~> 0.2)
|
119
|
+
hoe-manns (~> 1.4)
|
120
|
+
hoe-reek (~> 1.1)
|
121
|
+
hoe-rubocop (~> 1.0)
|
122
|
+
hoe-rubygems (~> 1.0)
|
123
|
+
hoe-seattlerb (~> 1.3)
|
124
|
+
hoe-version (~> 1.2)
|
125
|
+
indexer (~> 0.3)
|
126
|
+
manns_shared (~> 1.0)
|
127
|
+
nokogiri (~> 1.6.7)
|
128
|
+
notifier (~> 0.5)
|
129
|
+
parseconfig (~> 1.0)
|
130
|
+
rainbow (~> 2.1)
|
131
|
+
rake (~> 10.5)
|
132
|
+
rdoc (~> 4.0)
|
133
|
+
rspec (~> 3.4)
|
134
|
+
rubocop (~> 0.36)
|
135
|
+
setup (~> 5.2)
|
136
|
+
simplecov (~> 0.11)
|
137
|
+
|
138
|
+
BUNDLED WITH
|
139
|
+
1.11.2
|