projectr 0.1.6 → 0.1.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +0 -1
- data/bin/projectr +19 -12
- data/lib/projectr/version.rb +1 -1
- data/projectr-0.1.6.gem +0 -0
- data/projectr.gemspec +3 -5
- metadata +9 -29
- data/Gemfile +0 -6
- data/bin/bundler +0 -16
- data/bin/commander +0 -16
- data/bin/console +0 -14
- data/bin/rake +0 -16
- data/bin/setup +0 -7
- data/exe/projectr +0 -23
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d0b1bb1b81fa0920fcd3907c68ff9f520d90e9d9
|
4
|
+
data.tar.gz: d155ebebcff710409d1f0c67d1e69206f2a2b3b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 12a5a6eef851a4a96a9d4b1637b201e572a144b7d0223b83f4aae2adfa93178623589686bdd3cead787c7fcba1b606f0299b995526506b7135a63bb432db3ea0
|
7
|
+
data.tar.gz: b93630a17bfbcc8b73516528642be1f905b7e1168c0f4f78b514b620d864350f4cb9d4e17557cb28817c76d8fae4f485aa82ece8ac70fa5190d9ae6265e87171
|
data/Rakefile
CHANGED
@@ -1 +0,0 @@
|
|
1
|
-
require "bundler/gem_tasks"
|
data/bin/projectr
CHANGED
@@ -1,16 +1,23 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
2
|
+
# vim: set ft=ruby:
|
3
|
+
require 'commander/import'
|
4
|
+
require 'projectr'
|
5
|
+
require 'projectr/version'
|
8
6
|
|
9
|
-
|
10
|
-
|
11
|
-
|
7
|
+
program :name, 'Projectr'
|
8
|
+
program :version, Projectr::VERSION
|
9
|
+
program :description, 'Project templating tool for quickly starting and updating new projects.'
|
12
10
|
|
13
|
-
|
14
|
-
|
11
|
+
command :list do |c|
|
12
|
+
c.syntax = 'list [options]'
|
13
|
+
c.action do |args, opts|
|
14
|
+
Projectr.list()
|
15
|
+
end
|
16
|
+
end
|
15
17
|
|
16
|
-
load
|
18
|
+
command :load do |c|
|
19
|
+
c.syntax = 'load <name> [options]'
|
20
|
+
c.action do |args, opts|
|
21
|
+
Projectr.load(args.first)
|
22
|
+
end
|
23
|
+
end
|
data/lib/projectr/version.rb
CHANGED
data/projectr-0.1.6.gem
ADDED
Binary file
|
data/projectr.gemspec
CHANGED
@@ -15,12 +15,10 @@ Gem::Specification.new do |spec|
|
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
17
17
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
18
|
-
spec.bindir = 'exe'
|
19
|
-
spec.executables = ['projectr']
|
20
18
|
spec.require_paths = ['lib']
|
21
19
|
|
22
|
-
spec.
|
23
|
-
spec.
|
20
|
+
spec.bindir = 'bin'
|
21
|
+
spec.executables = ['projectr']
|
24
22
|
|
25
|
-
|
23
|
+
spec.add_dependency 'commander'
|
26
24
|
end
|
metadata
CHANGED
@@ -1,43 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: projectr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josh Glendenning
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
date: 2015-09-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: commander
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
20
|
-
type: :
|
19
|
+
version: '0'
|
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: '
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: rake
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - "~>"
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '10.0'
|
34
|
-
type: :development
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - "~>"
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '10.0'
|
26
|
+
version: '0'
|
41
27
|
description: Project templating tool for quickly starting and updating new projects.
|
42
28
|
email:
|
43
29
|
- joshglendenning@gmail.com
|
@@ -48,19 +34,13 @@ extra_rdoc_files: []
|
|
48
34
|
files:
|
49
35
|
- ".gitignore"
|
50
36
|
- ".travis.yml"
|
51
|
-
- Gemfile
|
52
37
|
- LICENSE.txt
|
53
38
|
- README.md
|
54
39
|
- Rakefile
|
55
|
-
- bin/bundler
|
56
|
-
- bin/commander
|
57
|
-
- bin/console
|
58
40
|
- bin/projectr
|
59
|
-
- bin/rake
|
60
|
-
- bin/setup
|
61
|
-
- exe/projectr
|
62
41
|
- lib/projectr.rb
|
63
42
|
- lib/projectr/version.rb
|
43
|
+
- projectr-0.1.6.gem
|
64
44
|
- projectr.gemspec
|
65
45
|
homepage: https://github.com/joshglendenning/projectr
|
66
46
|
licenses:
|
data/Gemfile
DELETED
data/bin/bundler
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'bundler' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('bundler', 'bundler')
|
data/bin/commander
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'commander' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('commander', 'commander')
|
data/bin/console
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require "bundler/setup"
|
4
|
-
require "projectr"
|
5
|
-
|
6
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
-
# with your gem easier. You can also use a different console, if you like.
|
8
|
-
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
-
# require "pry"
|
11
|
-
# Pry.start
|
12
|
-
|
13
|
-
require "irb"
|
14
|
-
IRB.start
|
data/bin/rake
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
#
|
3
|
-
# This file was generated by Bundler.
|
4
|
-
#
|
5
|
-
# The application 'rake' is installed as part of a gem, and
|
6
|
-
# this file is here to facilitate running it.
|
7
|
-
#
|
8
|
-
|
9
|
-
require 'pathname'
|
10
|
-
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
|
11
|
-
Pathname.new(__FILE__).realpath)
|
12
|
-
|
13
|
-
require 'rubygems'
|
14
|
-
require 'bundler/setup'
|
15
|
-
|
16
|
-
load Gem.bin_path('rake', 'rake')
|
data/bin/setup
DELETED
data/exe/projectr
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
# vim: set ft=ruby:
|
3
|
-
require 'commander/import'
|
4
|
-
require 'projectr'
|
5
|
-
require 'projectr/version'
|
6
|
-
|
7
|
-
program :name, 'Projectr'
|
8
|
-
program :version, Projectr::VERSION
|
9
|
-
program :description, 'Project templating tool for quickly starting and updating new projects.'
|
10
|
-
|
11
|
-
command :list do |c|
|
12
|
-
c.syntax = 'list [options]'
|
13
|
-
c.action do |args, opts|
|
14
|
-
Projectr.list()
|
15
|
-
end
|
16
|
-
end
|
17
|
-
|
18
|
-
command :load do |c|
|
19
|
-
c.syntax = 'load <name> [options]'
|
20
|
-
c.action do |args, opts|
|
21
|
-
Projectr.load(args.first)
|
22
|
-
end
|
23
|
-
end
|