projectr 0.1.1 → 0.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 36b84cc69363648b4b96b90883536b9b37e7feea
4
- data.tar.gz: 1e37956326518545d25d2746df1551ae8cc98508
3
+ metadata.gz: ad213c76c9cd22cff0d263030ba62557f38ba536
4
+ data.tar.gz: 22002739c9f76b874cfe3a6bc92ed59e0da25bba
5
5
  SHA512:
6
- metadata.gz: 5e7c27d501649549d418dcb231f62692dcae73e7f5a1f7ab341e1c5b709e444740c4b05f69435feeb4725a1feab07e290cd779aa1bd4aa1c698ec19ec46c7502
7
- data.tar.gz: 8d682baeccbd335ab449c9f54052f11e00d556dba2f81da9c02b368236e8d01ced98642a8c6d49241656fc1ec4c2d5bf56efb2975302ff8e9dda95466f69eaa9
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
@@ -0,0 +1,7 @@
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
File without changes
@@ -1,3 +1,3 @@
1
1
  module Projectr
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
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 = "bin"
19
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
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.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Glendenning
8
8
  autorequire:
9
- bindir: bin
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/projectr
55
+ - bin/console
56
+ - bin/setup
57
+ - exe/projectr
56
58
  - lib/projectr.rb
57
59
  - lib/projectr/version.rb
58
60
  - projectr.gemspec