retrospec 0.6.2 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +23 -7
- data/Gemfile +2 -2
- data/Gemfile.lock +42 -42
- data/README.md +55 -46
- data/lib/retrospec/cli.rb +3 -3
- data/lib/retrospec/plugins/v1/plugin.rb +1 -1
- data/lib/retrospec/version.rb +1 -1
- data/plugin_development.md +21 -16
- data/retrospec.gemspec +1 -1
- metadata +27 -27
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 81a23cfd91f5fd7f280979484cfcd09f5706dcde
|
4
|
+
data.tar.gz: 76eea608c75ef1ee0fcd010823bd897ad1f00a87
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3607bea10d87afb8bb0c8d0efbe8d0cc6a1d0e19bb142c74687ac449933516cb12a6a2c7ba85229ffb368600fab260c4e85f4abee0978ab07fde03410045f28f
|
7
|
+
data.tar.gz: 31565e268795dcb6ae48b72e7a53990528c4778cf6a0cebba4396922c36d2371b1fd97e64c154b3b159a6c1aefdfdac68e57365f6705dab9338e3214af569a23
|
data/CHANGELOG.md
CHANGED
@@ -1,13 +1,29 @@
|
|
1
1
|
# Retrospec Changelog
|
2
|
+
|
3
|
+
## Unreleased
|
4
|
+
|
5
|
+
## 0.7.0
|
6
|
+
|
7
|
+
- Replace trollop with optimist (Fixes warning message)
|
8
|
+
|
2
9
|
## 0.6.2
|
3
|
-
|
10
|
+
|
11
|
+
- Fixes a bug with safe_create_module_files not passing the filter
|
12
|
+
|
4
13
|
## 0.6.1
|
5
|
-
|
14
|
+
|
15
|
+
- Adds ability to create files from any template directory
|
16
|
+
|
6
17
|
## 0.6.0
|
7
|
-
|
8
|
-
|
18
|
+
|
19
|
+
- Adds the ability to filter out certain files from being generated
|
20
|
+
- Adds the ability to sync any module file when it ends contains a .sync in the file name
|
21
|
+
|
9
22
|
## 0.5.1
|
10
|
-
|
23
|
+
|
24
|
+
- fixes gemspec spefication for runtime dependency
|
25
|
+
|
11
26
|
## 0.5.0
|
12
|
-
|
13
|
-
|
27
|
+
|
28
|
+
- adds ability to overwrite files
|
29
|
+
- removes jeweler dependency, and uses bundler tasks instead
|
data/Gemfile
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
source "http://rubygems.org"
|
2
|
-
gem '
|
2
|
+
gem 'optimist', '~> 3.0.0'
|
3
3
|
|
4
4
|
group :development do
|
5
5
|
gem "rspec", "~> 3.2"
|
6
6
|
gem "rdoc", "~> 3.12"
|
7
7
|
gem 'rake'
|
8
|
-
gem "bundler", "~>
|
8
|
+
gem "bundler", "~> 2.0"
|
9
9
|
gem "simplecov", ">= 0"
|
10
10
|
gem 'pry'
|
11
11
|
gem "fakefs", :require => "fakefs/safe"
|
data/Gemfile.lock
CHANGED
@@ -1,66 +1,66 @@
|
|
1
1
|
GEM
|
2
2
|
remote: http://rubygems.org/
|
3
3
|
specs:
|
4
|
-
ast (2.
|
5
|
-
coderay (1.1.
|
6
|
-
diff-lcs (1.
|
7
|
-
docile (1.
|
8
|
-
fakefs (0.
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
4
|
+
ast (2.4.0)
|
5
|
+
coderay (1.1.2)
|
6
|
+
diff-lcs (1.3)
|
7
|
+
docile (1.3.2)
|
8
|
+
fakefs (0.20.1)
|
9
|
+
jaro_winkler (1.5.3)
|
10
|
+
json (1.8.6)
|
11
|
+
method_source (0.9.2)
|
12
|
+
optimist (3.0.0)
|
13
|
+
parallel (1.17.0)
|
14
|
+
parser (2.6.3.0)
|
15
|
+
ast (~> 2.4.0)
|
16
|
+
pry (0.12.2)
|
15
17
|
coderay (~> 1.1.0)
|
16
|
-
method_source (~> 0.
|
17
|
-
|
18
|
-
|
19
|
-
rake (10.4.2)
|
18
|
+
method_source (~> 0.9.0)
|
19
|
+
rainbow (3.0.0)
|
20
|
+
rake (12.3.2)
|
20
21
|
rdoc (3.12.2)
|
21
22
|
json (~> 1.4)
|
22
|
-
rspec (3.
|
23
|
-
rspec-core (~> 3.
|
24
|
-
rspec-expectations (~> 3.
|
25
|
-
rspec-mocks (~> 3.
|
26
|
-
rspec-core (3.
|
27
|
-
rspec-support (~> 3.
|
28
|
-
rspec-expectations (3.
|
23
|
+
rspec (3.8.0)
|
24
|
+
rspec-core (~> 3.8.0)
|
25
|
+
rspec-expectations (~> 3.8.0)
|
26
|
+
rspec-mocks (~> 3.8.0)
|
27
|
+
rspec-core (3.8.1)
|
28
|
+
rspec-support (~> 3.8.0)
|
29
|
+
rspec-expectations (3.8.4)
|
29
30
|
diff-lcs (>= 1.2.0, < 2.0)
|
30
|
-
rspec-support (~> 3.
|
31
|
-
rspec-mocks (3.
|
31
|
+
rspec-support (~> 3.8.0)
|
32
|
+
rspec-mocks (3.8.1)
|
32
33
|
diff-lcs (>= 1.2.0, < 2.0)
|
33
|
-
rspec-support (~> 3.
|
34
|
-
rspec-support (3.
|
35
|
-
rubocop (0.
|
36
|
-
|
37
|
-
|
38
|
-
|
34
|
+
rspec-support (~> 3.8.0)
|
35
|
+
rspec-support (3.8.2)
|
36
|
+
rubocop (0.71.0)
|
37
|
+
jaro_winkler (~> 1.5.1)
|
38
|
+
parallel (~> 1.10)
|
39
|
+
parser (>= 2.6)
|
40
|
+
rainbow (>= 2.2.2, < 4.0)
|
39
41
|
ruby-progressbar (~> 1.7)
|
40
|
-
unicode-display_width (
|
41
|
-
ruby-progressbar (1.
|
42
|
-
simplecov (0.
|
43
|
-
docile (~> 1.1
|
44
|
-
json (
|
42
|
+
unicode-display_width (>= 1.4.0, < 1.7)
|
43
|
+
ruby-progressbar (1.10.1)
|
44
|
+
simplecov (0.16.1)
|
45
|
+
docile (~> 1.1)
|
46
|
+
json (>= 1.8, < 3)
|
45
47
|
simplecov-html (~> 0.10.0)
|
46
|
-
simplecov-html (0.10.
|
47
|
-
|
48
|
-
trollop (2.1.2)
|
49
|
-
unicode-display_width (1.1.3)
|
48
|
+
simplecov-html (0.10.2)
|
49
|
+
unicode-display_width (1.6.0)
|
50
50
|
|
51
51
|
PLATFORMS
|
52
52
|
ruby
|
53
53
|
|
54
54
|
DEPENDENCIES
|
55
|
-
bundler (~>
|
55
|
+
bundler (~> 2.0)
|
56
56
|
fakefs
|
57
|
+
optimist (~> 3.0.0)
|
57
58
|
pry
|
58
59
|
rake
|
59
60
|
rdoc (~> 3.12)
|
60
61
|
rspec (~> 3.2)
|
61
62
|
rubocop
|
62
63
|
simplecov
|
63
|
-
trollop
|
64
64
|
|
65
65
|
BUNDLED WITH
|
66
|
-
|
66
|
+
2.0.2
|
data/README.md
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
# Retrospec
|
2
|
+
|
2
3
|
[![Gem Version](https://badge.fury.io/rb/retrospec.svg)](http://badge.fury.io/rb/retrospec)
|
3
4
|
[![Build Status](https://travis-ci.org/nwops/retrospec.png)](https://travis-ci.org/nwops/retrospec)
|
4
5
|
|
@@ -6,23 +7,24 @@ Retrospec is a framework that allows the automation of repetitive project file c
|
|
6
7
|
project through the use of a pluggable architecture.
|
7
8
|
|
8
9
|
The idea originally came from another project that performed the same function but was scoped to puppet module creation
|
9
|
-
called [puppet-retrospec](https://github.com/nwops/puppet-retrospec.git).
|
10
|
+
called [puppet-retrospec](https://github.com/nwops/puppet-retrospec.git). The goal of puppet-retrospec was to document
|
10
11
|
the workflow and its best practices inside templates. This idea has now been generalized to cover any kind of project,
|
11
12
|
therefore making it dead simple for anybody to get their project started with a simple command.
|
12
13
|
|
13
14
|
There are two scenarios that this gem can be used for.
|
15
|
+
|
14
16
|
1. Initial project creation
|
15
17
|
2. Project augmentation
|
16
18
|
|
17
19
|
The first scenario is to aid the creation of the project as many times information is spread across people, teams, blogs,
|
18
|
-
forums and is often out of date.
|
19
|
-
information from the user.
|
20
|
+
forums and is often out of date. By keeping this information in templates we have removed the burden of finding this
|
21
|
+
information from the user. However, there are many tools in existence today that already help in this area, but they
|
20
22
|
are often not customizable.
|
21
23
|
|
22
|
-
The second scenario it to augment an existing project that a user may have already started.
|
24
|
+
The second scenario it to augment an existing project that a user may have already started. When this is the case
|
23
25
|
retrospec can "retrofit" an existing project with the latest workflow and best practices based on the templates inside
|
24
|
-
a plugin gem.
|
25
|
-
initial module creation.
|
26
|
+
a plugin gem. An existing project also contains information that can be used to automatically generate lots of files beyond just
|
27
|
+
initial module creation. A great example of this is with [puppet-retrospec](https://github.com/nwops/puppet-retrospec.git),
|
26
28
|
where the goal is to automaticly generate valid unit tests based on the code the author wrote. So as the user writes more
|
27
29
|
code, they can easily create unit test files by just running retrospec.
|
28
30
|
|
@@ -41,25 +43,28 @@ This idea is inspried by a few projects:
|
|
41
43
|
`gem install retrospec`
|
42
44
|
|
43
45
|
## Known issues
|
46
|
+
|
44
47
|
If you have previously installed the puppet-retrospec gem, there is a conflict with the executable file `retrospec` because
|
45
|
-
this gem also uses an executable file with the same name.
|
46
|
-
to a retrospec plugin that performs the same functionality.
|
48
|
+
this gem also uses an executable file with the same name. As a result I will be moving the legacy puppet-retrospec gem
|
49
|
+
to a retrospec plugin that performs the same functionality. But first I have to release this gem and the plugingem in order
|
47
50
|
to move the puppet-retrospec to a plugin.
|
48
51
|
|
49
52
|
## Usage
|
50
53
|
|
51
54
|
### List Available Plugins
|
52
|
-
By default the retrospec gem does not do anything but provide a framework for plugins. In order to do anything you will
|
53
|
-
need to install a retrospec plugin. To see a list of plugins use: `retrospec -a` which will query the following [url](https://raw.githubusercontent.com/nwops/retrospec/master/available_plugins.yaml).
|
54
55
|
|
56
|
+
By default the retrospec gem does not do anything but provide a framework for plugins. In order to do anything you will
|
57
|
+
need to install a retrospec plugin. To see a list of plugins use: `retrospec -a` which will query the following [url](https://raw.githubusercontent.com/nwops/retrospec/master/available_plugins.yaml).
|
55
58
|
|
56
59
|
### Setting the module path
|
57
|
-
|
60
|
+
|
61
|
+
Setting the module path is the only option that can change the outcome of the plugin. By default it will use the current
|
58
62
|
directory, but this can be overridden by using the `retrospec -m` option.
|
59
63
|
|
60
64
|
### Subcommands
|
61
|
-
|
62
|
-
|
65
|
+
|
66
|
+
Subcommands are added dynamically to the help screen when installing new retrospec plugins.
|
67
|
+
So just use `retrospec -h` to see the list. The name of the plugin is usually the name of subcommand.
|
63
68
|
|
64
69
|
```
|
65
70
|
retrospec -h
|
@@ -74,13 +79,14 @@ plugingen
|
|
74
79
|
-h, --help Show this message
|
75
80
|
```
|
76
81
|
|
77
|
-
Note: If you are really good at
|
78
|
-
for a git like interface but came up short.
|
82
|
+
Note: If you are really good at optimist and can suggest a better way to display subcommands please let me know. I was going
|
83
|
+
for a git like interface but came up short.
|
79
84
|
|
80
85
|
### Using subcommands
|
86
|
+
|
81
87
|
Once you find the subcommand you want just run the subcommand like: `retrospec -m tmp/test4 plugingen`. If you
|
82
|
-
have already created your project you don't need to pass the `-m` option if your current working directory
|
83
|
-
is the root of your project.
|
88
|
+
have already created your project you don't need to pass the `-m` option if your current working directory
|
89
|
+
is the root of your project. So you may find yourself running `retrospec plugin_name` often inside your project.
|
84
90
|
|
85
91
|
Getting help with a subcommand is easy as using `retrospec -m tmp/test4 plugin_name -h`
|
86
92
|
|
@@ -89,49 +95,51 @@ Getting help with a subcommand is easy as using `retrospec -m tmp/test4 plugin_n
|
|
89
95
|
Options:
|
90
96
|
-n, --name=<s> The name of the new plugin (default: new_retrospec_plugin)
|
91
97
|
-h, --help Show this message
|
92
|
-
```
|
93
|
-
|
98
|
+
```
|
94
99
|
|
95
100
|
### Retrspec config file
|
101
|
+
|
96
102
|
Retrospec will read the config file at ~/.retrospec/config.yaml for configs related to retrospec itself or any plugins
|
97
|
-
you install.
|
98
|
-
so please refer to the plugin documentation for which options you can save to the config file.
|
99
|
-
no retrospec config options being read form the config file.
|
103
|
+
you install. Since you may be running retrospec over and over it will be annoying to always have to specify this info
|
104
|
+
so please refer to the plugin documentation for which options you can save to the config file. At this time there are
|
105
|
+
no retrospec config options being read form the config file. By default retrospec will add a simple config to ~/.retrospec
|
100
106
|
|
101
107
|
## Plugins
|
102
|
-
Please see the following [list](https://raw.githubusercontent.com/nwops/retrospec/master/available_plugins.yaml) for available plugins.
|
103
108
|
|
109
|
+
Please see the following [list](https://raw.githubusercontent.com/nwops/retrospec/master/available_plugins.yaml) for available plugins.
|
104
110
|
|
105
111
|
## Plugin development and future plugin ideas
|
112
|
+
|
106
113
|
Please see the [plugin document](plugin_development.md) for creating new retrospec plugins.
|
107
114
|
|
108
115
|
Some ideas I have in my head for future plugins that should be created.
|
109
116
|
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
117
|
+
- foreman plugin generator
|
118
|
+
- foreman hammer cli plugin generator
|
119
|
+
- smart-proxy plugin generator
|
120
|
+
- nodejs project generator
|
121
|
+
- chef module generator
|
122
|
+
- ansible module generator
|
123
|
+
- saltstack module generator (possibly multiple types of plugins to create here)
|
124
|
+
- groovy project generator
|
125
|
+
- puppet module generator (in progress)
|
119
126
|
|
120
|
-
The sky is really the limit for what we can create since the usage is limited to any project that contains files.
|
127
|
+
The sky is really the limit for what we can create since the usage is limited to any project that contains files.
|
121
128
|
|
122
129
|
## Special file extensions
|
123
|
-
|
124
|
-
|
125
|
-
|
130
|
+
|
131
|
+
- If a file contains `.sync` the file will be always be synced
|
132
|
+
- If a file contains `.retrospec.erb` this tells retrospec that the file should be rendered as an erb file
|
133
|
+
|
126
134
|
## Contributing to retrospec
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
+
|
136
|
+
- Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
|
137
|
+
- Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
|
138
|
+
- Fork the project.
|
139
|
+
- Start a feature/bugfix branch.
|
140
|
+
- Commit and push until you are happy with your contribution.
|
141
|
+
- Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
142
|
+
- Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
|
135
143
|
|
136
144
|
## Copyright
|
137
145
|
|
@@ -139,5 +147,6 @@ Copyright (c) 2015 Corey Osman. See LICENSE.txt for
|
|
139
147
|
further details.
|
140
148
|
|
141
149
|
## Paid Support
|
142
|
-
|
143
|
-
|
150
|
+
|
151
|
+
Want to see new features developed much faster? Contact me about a support contract so I can develop this tool during
|
152
|
+
the day instead of after work. contact: sales@logicminds.biz
|
data/lib/retrospec/cli.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
require_relative 'plugins'
|
2
|
-
require '
|
2
|
+
require 'optimist'
|
3
3
|
require_relative '../retrospec'
|
4
4
|
require_relative 'config'
|
5
5
|
|
@@ -13,7 +13,7 @@ module Retrospec
|
|
13
13
|
sub_commands = cli.plugin_map.keys
|
14
14
|
cmd_help = sub_commands.join("\n")
|
15
15
|
|
16
|
-
global_opts =
|
16
|
+
global_opts = Optimist::options do
|
17
17
|
version "#{Retrospec::VERSION} (c) Corey Osman"
|
18
18
|
banner <<-EOS
|
19
19
|
A framework to automate your development workflow by generating common files and test patterns.
|
@@ -52,7 +52,7 @@ Available subcommands:
|
|
52
52
|
# this is the default action when no command is entered
|
53
53
|
# at a later time we will try and use some magic to guess
|
54
54
|
# what the user wants
|
55
|
-
|
55
|
+
Optimist.educate
|
56
56
|
end
|
57
57
|
end
|
58
58
|
end
|
data/lib/retrospec/version.rb
CHANGED
data/plugin_development.md
CHANGED
@@ -4,7 +4,8 @@ If you wish to automate the creation of a project or other project plugins you s
|
|
4
4
|
create a retrospec plugin. Follow the steps below to create a plugin.
|
5
5
|
|
6
6
|
## Creating a plugin using the plugin generator
|
7
|
-
|
7
|
+
|
8
|
+
1. Install the retrospec plugin that creates retrospec plugins! `gem install retrospec-plugingen`
|
8
9
|
2. Come up with a name for you plugin.
|
9
10
|
3. Use the retrospec plugin help `retrospec -m /path_to_project/plugin_name plugingen -h`
|
10
11
|
4. Create the plugin `retrospec -m /path_to_project/plugin_name plugingen`
|
@@ -12,33 +13,38 @@ create a retrospec plugin. Follow the steps below to create a plugin.
|
|
12
13
|
6. Hack --> Test --> Publish
|
13
14
|
|
14
15
|
## Choosing a plugin name
|
15
|
-
|
16
|
-
|
17
|
-
|
16
|
+
|
17
|
+
By default the plugin generator will use the name of the directory or the name specified via the -n option. This name
|
18
|
+
will be used throughout the generator templates so its important to pick a sensible name. The generator also uses the plugin_name
|
19
|
+
as a class name although you are free to change it after creation.
|
18
20
|
|
19
21
|
### Naming the gem and repo
|
22
|
+
|
20
23
|
Please ensure the gem name uses the following naming scheme retrospec-plugin_name and that your repo is also named retrospec-plugin_name.
|
21
|
-
This will help everyone identify what the repo and gem do.
|
24
|
+
This will help everyone identify what the repo and gem do.
|
22
25
|
|
23
26
|
Note: puppet-retrospec does not follow this standard due to a legacy name issue that would have caused confusion.
|
24
27
|
|
25
28
|
## What you need to override
|
26
|
-
|
29
|
+
|
30
|
+
- self.run_cli
|
27
31
|
|
28
32
|
## Create a context object
|
29
|
-
|
33
|
+
|
34
|
+
By default the plugin generator will create a context object that can be used inside templates. The default context object
|
30
35
|
does not contain anything useful so you will want to customize this object only if your templates require variable interpolation.
|
31
36
|
|
32
37
|
## Main method to override
|
33
|
-
Retrospec will call your plugin by running the plugin.run_cli class method. You can do whatever you want in this method.
|
34
38
|
|
35
|
-
|
36
|
-
|
39
|
+
Retrospec will call your plugin by running the plugin.run_cli class method. You can do whatever you want in this method.
|
40
|
+
|
41
|
+
The global_opts are the options passed into the retrospec command which are specific to retrospec. Additionally, the
|
42
|
+
global_config (~/.retrospec/config.yaml) is a hash map of the entire config while the plugin_config is a subset that pertains
|
37
43
|
only to your plugin.
|
38
44
|
|
39
|
-
In this method you should at least call self.new() on your plugin and then plugin_instance.run.
|
45
|
+
In this method you should at least call self.new() on your plugin and then plugin_instance.run.
|
40
46
|
|
41
|
-
For simplicity sake you can also just copy and paste this into your method.
|
47
|
+
For simplicity sake you can also just copy and paste this into your method. This is the default layout when using
|
42
48
|
the retrospec plugin generator.
|
43
49
|
|
44
50
|
```ruby
|
@@ -50,7 +56,7 @@ def self.run_cli(global_opts, global_config, plugin_config)
|
|
50
56
|
else
|
51
57
|
sub_command_help = ""
|
52
58
|
end
|
53
|
-
plugin_opts =
|
59
|
+
plugin_opts = optimist::options do
|
54
60
|
version "#{Retrospec::Pluginname::VERSION} (c) Your Name"
|
55
61
|
banner <<-EOS
|
56
62
|
Some description goes here.\n
|
@@ -77,11 +83,10 @@ Some description goes here.\n
|
|
77
83
|
end
|
78
84
|
```
|
79
85
|
|
80
|
-
See the [
|
86
|
+
See the [optimist documentation](http://optimist.rubyforge.org) for more info.
|
81
87
|
|
82
88
|
## Module helpers
|
89
|
+
|
83
90
|
The module helpers module is included by default and contains useful methods to safely create files. When creating files
|
84
91
|
use the safe create methods in order to protect the users content from being overwritten.
|
85
92
|
For a list of methods please see the [source code](https://github.com/nwops/retrospec/blob/master/lib/retrospec/plugins/v1/module_helpers.rb)
|
86
|
-
|
87
|
-
|
data/retrospec.gemspec
CHANGED
@@ -35,7 +35,7 @@ Gem::Specification.new do |spec|
|
|
35
35
|
spec.bindir = 'bin'
|
36
36
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
37
37
|
spec.require_paths = ['lib']
|
38
|
-
spec.add_runtime_dependency
|
38
|
+
spec.add_runtime_dependency(%q<optimist>, ["~> 3.0.0"])
|
39
39
|
spec.add_development_dependency 'bundler', '~> 1.13'
|
40
40
|
spec.add_development_dependency 'rake', '~> 10.0'
|
41
41
|
spec.add_development_dependency 'rspec', '~> 3.0'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: retrospec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Corey Osman
|
@@ -11,115 +11,115 @@ cert_chain: []
|
|
11
11
|
date: 2017-04-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: optimist
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 3.0.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 3.0.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - ~>
|
31
|
+
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '1.13'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - ~>
|
38
|
+
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '1.13'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rake
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - ~>
|
45
|
+
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '10.0'
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - ~>
|
52
|
+
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '10.0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: rspec
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- - ~>
|
59
|
+
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '3.0'
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- - ~>
|
66
|
+
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '3.0'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: pry
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
|
-
- -
|
73
|
+
- - ">="
|
74
74
|
- !ruby/object:Gem::Version
|
75
75
|
version: '0'
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
|
-
- -
|
80
|
+
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: simplecov
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
|
-
- -
|
87
|
+
- - ">="
|
88
88
|
- !ruby/object:Gem::Version
|
89
89
|
version: '0'
|
90
90
|
type: :development
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
|
-
- -
|
94
|
+
- - ">="
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '0'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: fakefs
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
|
-
- -
|
101
|
+
- - ">="
|
102
102
|
- !ruby/object:Gem::Version
|
103
103
|
version: '0'
|
104
104
|
type: :development
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
|
-
- -
|
108
|
+
- - ">="
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '0'
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: rubocop
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
114
114
|
requirements:
|
115
|
-
- -
|
115
|
+
- - ">="
|
116
116
|
- !ruby/object:Gem::Version
|
117
117
|
version: '0'
|
118
118
|
type: :development
|
119
119
|
prerelease: false
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
requirements:
|
122
|
-
- -
|
122
|
+
- - ">="
|
123
123
|
- !ruby/object:Gem::Version
|
124
124
|
version: '0'
|
125
125
|
description: Retrospec is a framework that allows the automation of repetitive file
|
@@ -133,10 +133,10 @@ extra_rdoc_files:
|
|
133
133
|
- LICENSE.txt
|
134
134
|
- README.md
|
135
135
|
files:
|
136
|
-
- .document
|
137
|
-
- .gitignore
|
138
|
-
- .rspec
|
139
|
-
- .travis.yml
|
136
|
+
- ".document"
|
137
|
+
- ".gitignore"
|
138
|
+
- ".rspec"
|
139
|
+
- ".travis.yml"
|
140
140
|
- CHANGELOG.md
|
141
141
|
- Gemfile
|
142
142
|
- Gemfile.lock
|
@@ -169,17 +169,17 @@ require_paths:
|
|
169
169
|
- lib
|
170
170
|
required_ruby_version: !ruby/object:Gem::Requirement
|
171
171
|
requirements:
|
172
|
-
- -
|
172
|
+
- - ">="
|
173
173
|
- !ruby/object:Gem::Version
|
174
174
|
version: '0'
|
175
175
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
176
176
|
requirements:
|
177
|
-
- -
|
177
|
+
- - ">="
|
178
178
|
- !ruby/object:Gem::Version
|
179
179
|
version: '0'
|
180
180
|
requirements: []
|
181
181
|
rubyforge_project:
|
182
|
-
rubygems_version: 2.
|
182
|
+
rubygems_version: 2.5.2.3
|
183
183
|
signing_key:
|
184
184
|
specification_version: 4
|
185
185
|
summary: A devops framework for automating your development workflow
|