jqr 0.1.0 → 0.1.1

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: ac76eda6f6923649fa07589735dbaa695ffd64c7
4
- data.tar.gz: 9ec74b6d0b11058e59ab79a5624b6a11587e7c46
3
+ metadata.gz: ef733d9483c93f4c2e4ffa718de0827659a3e7d3
4
+ data.tar.gz: 1ab9f37a666e24e020911a5f2fa8d98d426cffa4
5
5
  SHA512:
6
- metadata.gz: b81b6bbf169bdfed3b16a01878e836a46ebb8ec4f87a0b782414f70267252d9309e7f439aef38dbbbea08d747344b873b3d08417ecdfaffab2a0ef5f2f7a057d
7
- data.tar.gz: 1132f621d554bd65bc2f358cacdc23f19690173f62035537df18b53c6c238fcf8fbea8d7784a15634367dd70172076bd3ae5b27dbe6948dabf1c58fe385c2eed
6
+ metadata.gz: abfca28681c214afaa4e0c3fdc108eb3d70e40383f06dbd28152aad844701e5bea22295991649559039a8264fd878c14a38096227b8b722419e8fe7a0832f61d
7
+ data.tar.gz: 7d15cba92348dc26019baf874d1b5c1e3e6224364edeec37df3e6596ae84ae96a1e730b3e0e606a0463faa268aa56bc65e414582ad5d738b9864782c40a6e4c5
@@ -13,8 +13,8 @@ Gem::Specification.new do |spec|
13
13
  spec.homepage = "https://github.com/nownabe/jqr"
14
14
 
15
15
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
16
- spec.bindir = "exe"
17
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
16
+ spec.bindir = "bin"
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
18
  spec.require_paths = ["lib"]
19
19
 
20
20
  spec.add_dependency "activesupport"
@@ -1,3 +1,3 @@
1
1
  module Jqr
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,12 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jqr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - nownabe
8
8
  autorequire:
9
- bindir: exe
9
+ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2015-04-10 00:00:00.000000000 Z
12
12
  dependencies:
@@ -69,7 +69,8 @@ dependencies:
69
69
  description:
70
70
  email:
71
71
  - nownabe@gmail.com
72
- executables: []
72
+ executables:
73
+ - jqr
73
74
  extensions: []
74
75
  extra_rdoc_files: []
75
76
  files:
@@ -81,9 +82,7 @@ files:
81
82
  - LICENSE.txt
82
83
  - README.md
83
84
  - Rakefile
84
- - bin/console
85
85
  - bin/jqr
86
- - bin/setup
87
86
  - jqr.gemspec
88
87
  - lib/jqr.rb
89
88
  - lib/jqr/version.rb
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "jqr"
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 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