codelation-cli 0.0.13 → 0.0.14
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/LICENSE +2 -2
- data/README.md +0 -2
- data/lib/codelation/development/ruby.rb +4 -11
- data/lib/codelation/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 750f72a68b70b5b237a59c35f09cd3bd3807c854
|
|
4
|
+
data.tar.gz: 469d288ec9b52ec35f6766c8dfeedf7e88ebd168
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f58108ee6c0a7e32c363592a0501e2c4f84108ef44b49a223e28756cf843558489c033614d2884b98c46d5db769cab4350a6601d7875264e82f927ab6ddbb64c
|
|
7
|
+
data.tar.gz: 3c77c36bc948be260f3e6c1251962707de912df2c3d03e15e40790411abbd155ab743a3a8428f00edf69e27efe4e16687c40e6efcfb7e3bde583c7e8c7866167
|
data/LICENSE
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
Name:
|
|
2
|
-
Copyright (c)
|
|
1
|
+
Name: codelation-cli
|
|
2
|
+
Copyright (c) 2015 Brian Pattison
|
|
3
3
|
|
|
4
4
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
5
5
|
|
data/README.md
CHANGED
|
@@ -30,17 +30,10 @@ module Codelation
|
|
|
30
30
|
|
|
31
31
|
# Install the Ruby gems needed for development.
|
|
32
32
|
def install_gems
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
`~/.codelation/ruby/bin/gem install codelation-cli`
|
|
38
|
-
|
|
39
|
-
print_command("gem install rubocop")
|
|
40
|
-
`~/.codelation/ruby/bin/gem install rubocop`
|
|
41
|
-
|
|
42
|
-
print_command("gem install scss-lint")
|
|
43
|
-
`~/.codelation/ruby/bin/gem install scss-lint`
|
|
33
|
+
%w(bundler codelation-cli dogids-cli rubocop scss-lint).each do |gem|
|
|
34
|
+
print_command("gem install #{gem}")
|
|
35
|
+
`~/.codelation/ruby/bin/gem install #{gem}`
|
|
36
|
+
end
|
|
44
37
|
end
|
|
45
38
|
|
|
46
39
|
# Install ruby-install from https://github.com/postmodern/ruby-install.
|
data/lib/codelation/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: codelation-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.14
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brian Pattison
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-03-
|
|
11
|
+
date: 2015-03-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: open_uri_redirections
|
|
@@ -126,3 +126,4 @@ signing_key:
|
|
|
126
126
|
specification_version: 4
|
|
127
127
|
summary: Command line tool for Codelation tasks
|
|
128
128
|
test_files: []
|
|
129
|
+
has_rdoc:
|