projectr 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/{bin → exe}/projectr +0 -0
- data/lib/projectr/version.rb +1 -1
- data/projectr.gemspec +2 -2
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ad213c76c9cd22cff0d263030ba62557f38ba536
|
4
|
+
data.tar.gz: 22002739c9f76b874cfe3a6bc92ed59e0da25bba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c22dbad265eac769e781e270e96effa029bdaa6d429d0bd6fbbfa40ffaac71e6bc7956c44b72e4bfb107b7ddbcc62f0dcb38224c223d5ffc9d186ab6bf8247f2
|
7
|
+
data.tar.gz: 898d8848470b0e6e16eecbe2c40be33e4e8f61ce0e58dfdaa3c94446f1ec9433735f9d01b7c6a48904b4be627126e65e9ef905631014c7e3188633a46caf4821
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
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/setup
ADDED
data/{bin → exe}/projectr
RENAMED
File without changes
|
data/lib/projectr/version.rb
CHANGED
data/projectr.gemspec
CHANGED
@@ -15,8 +15,8 @@ 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 = "
|
19
|
-
spec.executables = spec.files.grep(%r{^
|
18
|
+
spec.bindir = "exe"
|
19
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
20
20
|
spec.require_paths = ["lib"]
|
21
21
|
|
22
22
|
spec.add_development_dependency "bundler", "~> 1.10"
|
metadata
CHANGED
@@ -1,12 +1,12 @@
|
|
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.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josh Glendenning
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: exe
|
10
10
|
cert_chain: []
|
11
11
|
date: 2015-09-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
@@ -52,7 +52,9 @@ files:
|
|
52
52
|
- LICENSE.txt
|
53
53
|
- README.md
|
54
54
|
- Rakefile
|
55
|
-
- bin/
|
55
|
+
- bin/console
|
56
|
+
- bin/setup
|
57
|
+
- exe/projectr
|
56
58
|
- lib/projectr.rb
|
57
59
|
- lib/projectr/version.rb
|
58
60
|
- projectr.gemspec
|