boxci 0.0.37 → 0.0.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +3 -0
- data/CHANGELOG.md +5 -0
- data/DEVELOPMENT.md +193 -0
- data/ISSUES.md +53 -0
- data/README.md +35 -100
- data/boxci.gemspec +4 -4
- data/lib/boxci/templates/dot_boxci.yml.tt +1 -1
- data/lib/boxci/version.rb +1 -1
- metadata +11 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6679b4fb3a5a5a83e343a1b4c3dfaa58bcd922e7
|
4
|
+
data.tar.gz: 0df282ea835ce9bf58243238aa78dfc8cecf5801
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a20c8a2906c20cd360ef02e2a012026b3029aa2ce7294eebfbb447e63b50359b941504d5fb07413c405b612b2da77a2c99567d96ad9636153952ed61757668d
|
7
|
+
data.tar.gz: 160d1e96cd7d501a31f33bd1ed061b4fa50f7f0f84cfb38ad0686dc23fcd066558f2ef32ee88f1ea912733f3c0a90ebe828ae6132967ff6ab8fc3f66032f2210
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/DEVELOPMENT.md
ADDED
@@ -0,0 +1,193 @@
|
|
1
|
+
Great to have you here! Here are a few ways you can help out with
|
2
|
+
[BoxCI](http://github.com/reachlocal/boxci).
|
3
|
+
|
4
|
+
# Where should I start?
|
5
|
+
|
6
|
+
You can start learning about BoxCI by reading [the
|
7
|
+
documentation](http://boxci.io). You can also check out discussions about
|
8
|
+
BoxCI on the [BoxCI mailing
|
9
|
+
list](https://groups.google.com/forum/#!forum/boxci) and in the [BoxCI IRC
|
10
|
+
channel](irc://chat.freenode.net/%23boxci), which is #boxci on Freenode.
|
11
|
+
|
12
|
+
## Your first commits
|
13
|
+
|
14
|
+
If you’re interested in contributing to BoxCI, that’s awesome! We’d love your
|
15
|
+
help.
|
16
|
+
|
17
|
+
If you have any questions after reading this page, please feel free to contact
|
18
|
+
either [@cyphactor](http://github.com/cyphactor) or
|
19
|
+
[@BRIMIL01](http://github.com/brimil01). They are both happy to provide help
|
20
|
+
working through your first bugfix or thinking through the problem you’re
|
21
|
+
trying to resolve.
|
22
|
+
|
23
|
+
## Tackle some small problems
|
24
|
+
|
25
|
+
We track [small
|
26
|
+
bugs](https://github.com/reachlocal/boxci/issues?state=open) so
|
27
|
+
that anyone who wants to help can start with something that's not too
|
28
|
+
overwhelming. If nothing on those lists looks good, though, just talk to us.
|
29
|
+
|
30
|
+
|
31
|
+
# Development setup
|
32
|
+
|
33
|
+
BoxCI specifies the version of Ruby it is currently being developed against in
|
34
|
+
its `.ruby-version` file. This file should be compatible with either RVM or
|
35
|
+
rbenv. BoxCI also uses Bundler to manage its dependencies when under
|
36
|
+
development. To work on BoxCI, you'll probably want to do a couple of things.
|
37
|
+
|
38
|
+
1. Install BoxCI's dependencies
|
39
|
+
|
40
|
+
bundle
|
41
|
+
|
42
|
+
2. Run the test suite, to make sure things are working
|
43
|
+
|
44
|
+
bundle exec rspec
|
45
|
+
|
46
|
+
3. Set up a shell alias to run BoxCI from your clone, e.g. a Bash alias:
|
47
|
+
|
48
|
+
alias dboxci='ruby -I /path/to/boxci/lib /path/to/boxci/bin/boxci'
|
49
|
+
|
50
|
+
With that set up, you can test changes you've made to BoxCI by running
|
51
|
+
`dboxci`, without interfering with the regular `boxci` command.
|
52
|
+
|
53
|
+
# Bug triage
|
54
|
+
|
55
|
+
Triage is the work of processing tickets that have been opened into actionable
|
56
|
+
issues, feature requests, or bug reports. That includes verifying bugs,
|
57
|
+
categorizing the ticket, and ensuring there's enough information to reproduce
|
58
|
+
the bug for anyone who wants to try to fix it.
|
59
|
+
|
60
|
+
We've created an [issues
|
61
|
+
guide](https://github.com/reachlocal/boxci/blob/master/ISSUES.md) to walk
|
62
|
+
BoxCI users through the process of troubleshooting issues and reporting
|
63
|
+
bugs.
|
64
|
+
|
65
|
+
If you'd like to help, awesome! You can [report a new
|
66
|
+
bug](https://github.com/reachlocal/boxci/issues/new) or browse our [existing
|
67
|
+
open tickets](https://github.com/reachlocal/boxci/issues).
|
68
|
+
|
69
|
+
Not every ticket will point to a bug in BoxCI's code, but open tickets
|
70
|
+
usually mean that there is something we could improve to help that user.
|
71
|
+
Sometimes that means writing additional documentation, sometimes that means
|
72
|
+
making error messages clearer, and sometimes that means explaining to a user
|
73
|
+
that they need to install git to use git gems.
|
74
|
+
|
75
|
+
When you're looking at a ticket, here are the main questions to ask:
|
76
|
+
|
77
|
+
* Can I reproduce this bug myself?
|
78
|
+
* Are the steps to reproduce clearly stated in the ticket?
|
79
|
+
* Which versions of BoxCI manifest this bug?
|
80
|
+
* Which operating systems (OS X, Windows, Ubuntu, CentOS, etc.) manifest
|
81
|
+
this bug?
|
82
|
+
* Which rubies (MRI, JRuby, Rubinius, etc.) and which versions (1.8.7,
|
83
|
+
1.9.3, etc.) have this bug?
|
84
|
+
|
85
|
+
If you can't reproduce an issue, chances are good that the bug has been fixed
|
86
|
+
(hurrah!). That's a good time to post to the ticket explaining what you did
|
87
|
+
and how it worked.
|
88
|
+
|
89
|
+
If you can reproduce an issue, you're well on your way to fixing it. :) Fixing
|
90
|
+
issues is similar to adding new features:
|
91
|
+
|
92
|
+
1. Discuss the fix on the existing issue. Coordinating with everyone else
|
93
|
+
saves duplicate work and serves as a great way to get suggestions and
|
94
|
+
ideas if you need any.
|
95
|
+
2. Base your commits on the correct branch, generally master.
|
96
|
+
3. Commit the code and at least one test covering your changes to a named
|
97
|
+
branch in your fork.
|
98
|
+
4. Put a line in the
|
99
|
+
[CHANGELOG](https://github.com/reachlocal/boxci/blob/master/CHANGELOG.md)
|
100
|
+
summarizing your changes under the next release.
|
101
|
+
5. Send us a [pull
|
102
|
+
request](https://help.github.com/articles/using-pull-requests) from your
|
103
|
+
topic branch.
|
104
|
+
|
105
|
+
Finally, the ticket may be a duplicate of another older ticket. If you notice
|
106
|
+
a ticket is a duplicate, simply comment on the ticket noting the original
|
107
|
+
ticket’s number. For example, you could say “This is a duplicate of issue #42,
|
108
|
+
and can be closed”.
|
109
|
+
|
110
|
+
|
111
|
+
# Adding new features
|
112
|
+
|
113
|
+
If you would like to add a new feature to BoxCI, please follow these steps:
|
114
|
+
|
115
|
+
1. [Create an issue](https://github.com/reachlocal/boxci/issues/new) to
|
116
|
+
discuss your feature.
|
117
|
+
2. Base your commits on the master branch, since we follow
|
118
|
+
[SemVer](http://semver.org) and don't add new features to old releases.
|
119
|
+
3. Commit the code and at least one test covering your changes to a feature
|
120
|
+
branch in your fork.
|
121
|
+
4. Put a line in the
|
122
|
+
[CHANGELOG](https://github.com/reachlocal/boxci/blob/master/CHANGELOG.md)
|
123
|
+
summarizing your changes under the next release.
|
124
|
+
5. Send us a [pull
|
125
|
+
request](https://help.github.com/articles/using-pull-requests) from your
|
126
|
+
feature branch.
|
127
|
+
|
128
|
+
If you don't hear back immediately, don’t get discouraged! We all have day
|
129
|
+
jobs, but we respond to most tickets within a day or two.
|
130
|
+
|
131
|
+
|
132
|
+
# Beta testing
|
133
|
+
|
134
|
+
Early releases require heavy testing, especially across various system setups.
|
135
|
+
We :heart: testers, and are big fans of anyone who can run `gem install
|
136
|
+
bundler --pre` and try out upcoming releases in their development and staging
|
137
|
+
environments.
|
138
|
+
|
139
|
+
There may not always be prereleases or beta versions of BoxCI. That said,
|
140
|
+
you are always welcome to try checking out master and building a gem yourself
|
141
|
+
if you want to try out the latest changes.
|
142
|
+
|
143
|
+
|
144
|
+
# Translations
|
145
|
+
|
146
|
+
We don't currently have any translations, but please reach out to us if you
|
147
|
+
would like to help get this going.
|
148
|
+
|
149
|
+
|
150
|
+
# Documentation
|
151
|
+
|
152
|
+
Code needs explanation, and sometimes those who know the code well have
|
153
|
+
trouble explaining it to someone just getting into it. Because of that, we
|
154
|
+
welcome documentation suggestions and patches from everyone, especially if
|
155
|
+
they are brand new to using BoxCI.
|
156
|
+
|
157
|
+
BoxCI has two main sources of documentation: the built-in help (including
|
158
|
+
usage information) and the [BoxCI documentation site](http://boxci.io).
|
159
|
+
|
160
|
+
If you have a suggestion or proposed change for
|
161
|
+
[boxci.io](http://boxci.io), please open an issue or send a pull request
|
162
|
+
to the [boxci-site](https://github.com/reachlocal/boxci-site) repository.
|
163
|
+
|
164
|
+
|
165
|
+
|
166
|
+
# Community
|
167
|
+
|
168
|
+
Community is an important part of all we do. If you’d like to be part of the
|
169
|
+
BoxCI community, you can jump right in and start helping make BoxCI better
|
170
|
+
for everyone who uses it.
|
171
|
+
|
172
|
+
It would be tremendously helpful to have more people answering questions about
|
173
|
+
BoxCI (and often simply about Puppet or Linux itself) in our [issue
|
174
|
+
tracker](https://github.com/reachlocal/boxci/issues).
|
175
|
+
|
176
|
+
Additional documentation and explanation is always helpful, too. If you have
|
177
|
+
any suggestions for the BoxCI website [boxci.io](http://boxci.io), we would
|
178
|
+
absolutely love it if you opened an issue or pull request on the
|
179
|
+
[boxci-site](https://github.com/reachlocal/boxci-site) repository.
|
180
|
+
|
181
|
+
Finally, sharing your experiences and discoveries by writing them up is a
|
182
|
+
valuable way to help others who have similar problems or experiences in the
|
183
|
+
future. You can write a blog post, create an example and commit it to Github,
|
184
|
+
take screenshots, or make videos.
|
185
|
+
|
186
|
+
Examples of how BoxCI is used help everyone, and we’ve discovered that
|
187
|
+
people already use it in ways that we never imagined when we were writing it.
|
188
|
+
If you’re still not sure what to write about, there are also several projects
|
189
|
+
doing interesting things based on BoxCI. They could probably use publicity
|
190
|
+
too.
|
191
|
+
|
192
|
+
If you let someone on the core team know you wrote about BoxCI, we will add
|
193
|
+
your post to the list of BoxCI resources on the Github project wiki.
|
data/ISSUES.md
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
# BoxCI Issues
|
2
|
+
|
3
|
+
So! You're having problems with BoxCI. This file is here to help. If you're
|
4
|
+
running into an error, try reading the rest of this file for help. If you
|
5
|
+
can't figure out how to solve your problem, there are also instructions on how
|
6
|
+
to report a bug.
|
7
|
+
|
8
|
+
## Documentation
|
9
|
+
|
10
|
+
Instructions for common BoxCI uses can be found on the [BoxCI documentation
|
11
|
+
site](http://boxci.io/).
|
12
|
+
|
13
|
+
Detailed information about each BoxCI command, including help with common
|
14
|
+
problems, can be found in the [BoxCI documentation site](http://boxci.io/).
|
15
|
+
|
16
|
+
## Troubleshooting
|
17
|
+
|
18
|
+
### Other problems
|
19
|
+
|
20
|
+
First, figure out exactly what it is that you're trying to do. Then, go to the
|
21
|
+
[BoxCI documentation website](http://boxci.io/) and see if we have
|
22
|
+
instructions on how to do that.
|
23
|
+
|
24
|
+
## Reporting unresolved problems
|
25
|
+
|
26
|
+
Hopefully the troubleshooting steps above resolved your problem. If things
|
27
|
+
still aren't working the way you expect them to, please let us know so that we
|
28
|
+
can diagnose and hopefully fix the problem you're having.
|
29
|
+
|
30
|
+
**The best way to report a bug is by providing a reproduction script.**
|
31
|
+
|
32
|
+
A half working script with comments for the parts you were unable to automate
|
33
|
+
is still appreciated.
|
34
|
+
|
35
|
+
If you are unable to do that, please include the following information in your
|
36
|
+
report:
|
37
|
+
|
38
|
+
- What you're trying to accomplish
|
39
|
+
- The command you ran
|
40
|
+
- What you expected to happen
|
41
|
+
- What actually happened
|
42
|
+
- The exception backtrace(s), if any
|
43
|
+
- What version of BoxCI you are using (run `boxci --verson`)
|
44
|
+
- What version of Ruby you are using (run `ruby -v`)
|
45
|
+
|
46
|
+
[Create a gist](https://gist.github.com) containing all of that information,
|
47
|
+
then visit the [BoxCI issue
|
48
|
+
tracker](https://github.com/reachlocal/boxci/issues) and [create a
|
49
|
+
ticket](https://github.com/reachlocal/boxci/issues/new) describing your
|
50
|
+
problem and linking to your gist.
|
51
|
+
|
52
|
+
Thanks for reporting issues and helping make BoxCI better! We really
|
53
|
+
appreciate it.
|
data/README.md
CHANGED
@@ -1,124 +1,59 @@
|
|
1
|
-
# boxci: standardizing virtual development & ci environments
|
2
|
-
|
3
1
|
[](https://travis-ci.org/reachlocal/boxci)
|
4
2
|
[](https://rubygems.org/gems/boxci)
|
5
3
|
[](https://codeclimate.com/github/reachlocal/boxci)
|
6
4
|
[](https://coveralls.io/r/reachlocal/boxci)
|
7
5
|
[](https://gemnasium.com/reachlocal/boxci)
|
8
6
|
|
9
|
-
|
7
|
+
# BoxCI: virtual dev & ci environments
|
8
|
+
|
9
|
+
BoxCI makes creating a virtualized development & continuous integration
|
10
10
|
environments as easy as possible.
|
11
11
|
|
12
|
-
It does this by
|
13
|
-
[Vagrant](http://www.vagrantup.com/) for managing your development
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
12
|
+
It does this by implementing standards around the use of
|
13
|
+
[Vagrant](http://www.vagrantup.com/) for managing your virtual development and
|
14
|
+
continuous integration environment. This means that it helps you configure and
|
15
|
+
setup [Vagrant](http://www.vagrantup.com/), generate a well structured initial
|
16
|
+
puppet manifest, and handles spinning up your puppet managed continuous
|
17
|
+
integration environment in the cloud and running your automated test
|
18
|
+
suites.
|
19
19
|
|
20
|
-
## Installation
|
20
|
+
## Installation and usage
|
21
21
|
|
22
22
|
Install it by running the following:
|
23
23
|
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
Setting a new or existing project up with Boxci is done with the following
|
29
|
-
steps.
|
30
|
-
|
31
|
-
1. Setup initial `boxci` configs & skeletons
|
32
|
-
2. Update the generated configs
|
33
|
-
3. Build your base `boxci` puppet manifest
|
34
|
-
4. Iterate on your `boxci` puppet manifest
|
35
|
-
5. Run your test suite using `boxci`
|
36
|
-
|
37
|
-
### Setup initial boxci configs & skeletons
|
38
|
-
|
39
|
-
To *boxcify* your project you need to run the `boxci init <language>` command.
|
40
|
-
This command will create an initial `.boxci.yml` config for you in the current
|
41
|
-
working directory. Therefore, you should run this command from the root of
|
42
|
-
your project. It will also handle creating your user level `boxci`
|
43
|
-
configurations in the `~/.boxci` directory. An example of this can be seen as
|
44
|
-
follows:
|
45
|
-
|
46
|
-
$ boxci init ruby
|
47
|
-
|
48
|
-
*Note:* The above will create user level configs using the default provider
|
49
|
-
`virtualbox`. If you want to use `boxci` always with a cloud provider simply
|
50
|
-
rerun the `init` command specifying one of the supported providers. The
|
51
|
-
following is an example:
|
52
|
-
|
53
|
-
$ boxci init -p openstack ruby
|
54
|
-
|
55
|
-
This will go through and setup the proper directory structure and create the
|
56
|
-
config files just as before. However, when it identifies conflicts with the
|
57
|
-
existing files it will prompt you and ask you if you want to overwrite, diff
|
58
|
-
the files, not overwrite, etc.
|
59
|
-
|
60
|
-
This means that you can rerun the command over and over again and not worry
|
61
|
-
about it overwriting your configs unless you tell it too. This is also useful
|
62
|
-
in the scenarios where a new version of `boxci` has come out and added config
|
63
|
-
options because then you can rerun it and choose to diff them to see what was
|
64
|
-
added.
|
65
|
-
|
66
|
-
### Update the generated configs
|
24
|
+
gem install boxci
|
25
|
+
boxci init ruby
|
26
|
+
boxci build
|
27
|
+
boxci test
|
67
28
|
|
68
|
-
|
69
|
-
through the configs and update them.
|
29
|
+
## Documentation
|
70
30
|
|
71
|
-
|
31
|
+
See [boxci.io](http://boxci.io) for the full documentation.
|
72
32
|
|
73
|
-
|
33
|
+
## Troubleshooting
|
74
34
|
|
75
|
-
|
35
|
+
For help with common problems, see
|
36
|
+
[ISSUES](http://github.com/reachlocal/boxci/blob/master/ISSUES.md).
|
76
37
|
|
77
|
-
|
78
|
-
virtual machine simply run the following from the project's root directory.
|
79
|
-
|
80
|
-
$ boxci test
|
81
|
-
|
82
|
-
To see more output on what is happening, pass the "-v" flag for verbose:
|
83
|
-
|
84
|
-
$ boxci test -v
|
85
|
-
|
86
|
-
For details on other options you can set for test runs run the following
|
87
|
-
command:
|
88
|
-
|
89
|
-
$ boxci help test
|
90
|
-
|
91
|
-
## Get Help
|
92
|
-
|
93
|
-
`boxci` provides a useful help system within the command line tool. You can
|
94
|
-
see these messages by using the help command as follows:
|
95
|
-
|
96
|
-
$ boxci help
|
97
|
-
|
98
|
-
The above shows you the top level `boxci help` including a break down of it's
|
99
|
-
subcommands. You can get detailed help on each subcommand by running the
|
100
|
-
following:
|
101
|
-
|
102
|
-
$ boxci help SUBCOMMAND
|
103
|
-
|
104
|
-
For example if you wanted the detailed help on `init` you would run the
|
105
|
-
following:
|
38
|
+
## Contributing
|
106
39
|
|
107
|
-
|
40
|
+
If you would like to contribute to BoxCI, please refer to the guide,
|
41
|
+
[DEVELOPMENT](http://github.com/reachlocal/boxci/blob/master/DEVELOPMENT.md).
|
108
42
|
|
109
|
-
|
43
|
+
Please submit bugfixes as pull requests to the master branch.
|
110
44
|
|
111
|
-
|
45
|
+
## Core Team
|
112
46
|
|
113
|
-
|
114
|
-
|
47
|
+
The BoxCI core team is composed of Andrew De Ponte
|
48
|
+
([@cyphactor](http://github.com/cyphactor)), Brian Miller
|
49
|
+
([@BRIMIL01](http://github.com/brimil01)), and Russell Cloak
|
50
|
+
([@russCloak](http://github.com/russCloak)).
|
115
51
|
|
116
|
-
|
52
|
+
## Other questions
|
117
53
|
|
118
|
-
|
54
|
+
To see what has changed in recent versions of BoxCI, see
|
55
|
+
[CHANGELOG](http://github.com/reachlocal/boxci/blob/master/CHANGELOG.md).
|
119
56
|
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
124
|
-
5. Create new Pull Request
|
57
|
+
Feel free to chat with the BoxCI core team and others on IRC in the
|
58
|
+
[\#boxci](irc://chat.freenode.net/%23boxci) channel on Freenode, or via e-mail
|
59
|
+
on the [BoxCI mailing list](https://groups.google.com/forum/#!forum/boxci).
|
data/boxci.gemspec
CHANGED
@@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "boxci"
|
8
8
|
spec.version = Boxci::VERSION
|
9
9
|
spec.authors = ["Andrew De Ponte", "Brian Miller", "Russell Cloak"]
|
10
|
-
spec.email = ["cyphactor@gmail.com", "brimil01@gmail.com", "russcloak@gmail.
|
10
|
+
spec.email = ["cyphactor@gmail.com", "brimil01@gmail.com", "russcloak@gmail.com"]
|
11
11
|
spec.summary = %q{Tool simplifying Vagrant based development & continuous integration environments.}
|
12
12
|
spec.description = %q{Boxci is focused on defining standards and building tooling around using Vagrant for development & continuous integration environments to make using them as easy as possible.}
|
13
13
|
spec.homepage = "http://boxci.io"
|
@@ -20,9 +20,9 @@ Gem::Specification.new do |spec|
|
|
20
20
|
|
21
21
|
spec.add_runtime_dependency "thor", "~> 0.18"
|
22
22
|
spec.add_runtime_dependency "net-ssh", "~> 2.7"
|
23
|
-
spec.add_runtime_dependency "net-scp", "~> 1.
|
23
|
+
spec.add_runtime_dependency "net-scp", "~> 1.2"
|
24
24
|
|
25
|
-
spec.add_development_dependency "bundler", "~> 1.
|
25
|
+
spec.add_development_dependency "bundler", "~> 1.6"
|
26
26
|
spec.add_development_dependency "rspec", "~> 2.14"
|
27
|
-
spec.add_development_dependency "rake", "~> 10.
|
27
|
+
spec.add_development_dependency "rake", "~> 10.2"
|
28
28
|
end
|
data/lib/boxci/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: boxci
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.38
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew De Ponte
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2014-
|
13
|
+
date: 2014-04-24 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: thor
|
@@ -46,28 +46,28 @@ dependencies:
|
|
46
46
|
requirements:
|
47
47
|
- - "~>"
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: '1.
|
49
|
+
version: '1.2'
|
50
50
|
type: :runtime
|
51
51
|
prerelease: false
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
53
53
|
requirements:
|
54
54
|
- - "~>"
|
55
55
|
- !ruby/object:Gem::Version
|
56
|
-
version: '1.
|
56
|
+
version: '1.2'
|
57
57
|
- !ruby/object:Gem::Dependency
|
58
58
|
name: bundler
|
59
59
|
requirement: !ruby/object:Gem::Requirement
|
60
60
|
requirements:
|
61
61
|
- - "~>"
|
62
62
|
- !ruby/object:Gem::Version
|
63
|
-
version: '1.
|
63
|
+
version: '1.6'
|
64
64
|
type: :development
|
65
65
|
prerelease: false
|
66
66
|
version_requirements: !ruby/object:Gem::Requirement
|
67
67
|
requirements:
|
68
68
|
- - "~>"
|
69
69
|
- !ruby/object:Gem::Version
|
70
|
-
version: '1.
|
70
|
+
version: '1.6'
|
71
71
|
- !ruby/object:Gem::Dependency
|
72
72
|
name: rspec
|
73
73
|
requirement: !ruby/object:Gem::Requirement
|
@@ -88,21 +88,21 @@ dependencies:
|
|
88
88
|
requirements:
|
89
89
|
- - "~>"
|
90
90
|
- !ruby/object:Gem::Version
|
91
|
-
version: '10.
|
91
|
+
version: '10.2'
|
92
92
|
type: :development
|
93
93
|
prerelease: false
|
94
94
|
version_requirements: !ruby/object:Gem::Requirement
|
95
95
|
requirements:
|
96
96
|
- - "~>"
|
97
97
|
- !ruby/object:Gem::Version
|
98
|
-
version: '10.
|
98
|
+
version: '10.2'
|
99
99
|
description: Boxci is focused on defining standards and building tooling around using
|
100
100
|
Vagrant for development & continuous integration environments to make using them
|
101
101
|
as easy as possible.
|
102
102
|
email:
|
103
103
|
- cyphactor@gmail.com
|
104
104
|
- brimil01@gmail.com
|
105
|
-
- russcloak@gmail.
|
105
|
+
- russcloak@gmail.com
|
106
106
|
executables:
|
107
107
|
- boxci
|
108
108
|
extensions: []
|
@@ -114,7 +114,9 @@ files:
|
|
114
114
|
- ".ruby-version"
|
115
115
|
- ".travis.yml"
|
116
116
|
- CHANGELOG.md
|
117
|
+
- DEVELOPMENT.md
|
117
118
|
- Gemfile
|
119
|
+
- ISSUES.md
|
118
120
|
- LICENSE.txt
|
119
121
|
- README.md
|
120
122
|
- Rakefile
|