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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 70c8b0c1a689b9ac18cd373c71add2e7b98d0622
4
- data.tar.gz: bfa11cd55aba2e39c695e32eafea13f2be396890
3
+ metadata.gz: d0b1bb1b81fa0920fcd3907c68ff9f520d90e9d9
4
+ data.tar.gz: d155ebebcff710409d1f0c67d1e69206f2a2b3b8
5
5
  SHA512:
6
- metadata.gz: 1924d50642892eee7f353d27d7dc5bb0b5c3ea780a9e2114d973391097fb5bfcbf8a266967c9937fc34d3550ef4d4641857a34b559b86fd7196e67d4ec0e67d7
7
- data.tar.gz: 46aa01843a4b313a876bccf799d8a9853cc235591c734596513575172b895a4f340e99269aa21fdfa2b51b2bbd9e2e07e1c06269511e80a6c1a5a4ce5f2308f3
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
- # This file was generated by Bundler.
4
- #
5
- # The application 'projectr' is installed as part of a gem, and
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
- require 'pathname'
10
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
- Pathname.new(__FILE__).realpath)
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
- require 'rubygems'
14
- require 'bundler/setup'
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 Gem.bin_path('projectr', 'projectr')
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
@@ -1,3 +1,3 @@
1
1
  module Projectr
2
- VERSION = "0.1.6"
2
+ VERSION = "0.1.7"
3
3
  end
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.add_development_dependency 'bundler', '~> 1.10'
23
- spec.add_development_dependency 'rake', '~> 10.0'
20
+ spec.bindir = 'bin'
21
+ spec.executables = ['projectr']
24
22
 
25
- gem 'commander', '~> 4.3.5'
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.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Glendenning
8
8
  autorequire:
9
- bindir: exe
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: bundler
14
+ name: commander
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '1.10'
20
- type: :development
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: '1.10'
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
@@ -1,6 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem 'commander'
4
-
5
- # Specify your gem's dependencies in projectr.gemspec
6
- gemspec
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
@@ -1,7 +0,0 @@
1
- #!/bin/bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
-
5
- bundle install
6
-
7
- # Do any other automated setup that you need to do here
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