codelation-cli 0.0.13 → 0.0.14

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6f4a47316b7a32f60a296a082369e980e3788abc
4
- data.tar.gz: d99111e1990861713209e28e081e2d13be3cd6ce
3
+ metadata.gz: 750f72a68b70b5b237a59c35f09cd3bd3807c854
4
+ data.tar.gz: 469d288ec9b52ec35f6766c8dfeedf7e88ebd168
5
5
  SHA512:
6
- metadata.gz: e37f9db03eb74087d7e107e5dc674dd4a4dd711aa16645642fb63174a285711fd1c2f75b8c610574c55e2e79fa420219968d3dd52e6eb4a1024c1d5ba91fd6ff
7
- data.tar.gz: bddeda0aae64fafb29ce262a8f1a7b54fe663c5f4a3a3c14cc885a364bb86225f3120b7f1a2944c34aa7be52a99d75a5917a26a95f91bfdfcc8d3ea6915896a3
6
+ metadata.gz: f58108ee6c0a7e32c363592a0501e2c4f84108ef44b49a223e28756cf843558489c033614d2884b98c46d5db769cab4350a6601d7875264e82f927ab6ddbb64c
7
+ data.tar.gz: 3c77c36bc948be260f3e6c1251962707de912df2c3d03e15e40790411abbd155ab743a3a8428f00edf69e27efe4e16687c40e6efcfb7e3bde583c7e8c7866167
data/LICENSE CHANGED
@@ -1,5 +1,5 @@
1
- Name: dokku-installer-cli
2
- Copyright (c) 2014 Brian Pattison
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
@@ -4,8 +4,6 @@ Command line tool for Codelation tasks.
4
4
 
5
5
  ## Installation
6
6
 
7
- Add this line to your application's Gemfile:
8
-
9
7
  ```bash
10
8
  $ gem install codelation-cli
11
9
  ```
@@ -30,17 +30,10 @@ module Codelation
30
30
 
31
31
  # Install the Ruby gems needed for development.
32
32
  def install_gems
33
- print_command("gem install bundler")
34
- `~/.codelation/ruby/bin/gem install bundler`
35
-
36
- print_command("gem install codelation-cli")
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.
@@ -3,7 +3,7 @@ require "open-uri"
3
3
  require "thor"
4
4
 
5
5
  module Codelation
6
- VERSION = "0.0.13"
6
+ VERSION = "0.0.14"
7
7
 
8
8
  class Cli < Thor
9
9
  desc "update", "Update codelation-cli to latest version"
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.13
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-04 00:00:00.000000000 Z
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: