banisterfiend 0.0.1 → 0.1.0

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.
@@ -11,6 +11,7 @@ Gem::Specification.new do |s|
11
11
 
12
12
  s.files = `git ls-files`.split("\n")
13
13
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
14
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
14
15
  s.require_paths = ['lib']
15
16
 
16
17
  s.version = Banisterfiend::VERSION
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ #
4
+ begin
5
+ require 'banisterfiend'
6
+ rescue LoadError
7
+ require 'rubygems'
8
+ retry unless defined?(Gem)
9
+ end
10
+
11
+ puts "Name: #{Banisterfiend::name}"
@@ -1,3 +1,3 @@
1
1
  module Banisterfiend
2
- VERSION = "0.0.1"
2
+ VERSION = "0.1.0"
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: banisterfiend
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.1
5
+ version: 0.1.0
6
6
  platform: ruby
7
7
  authors:
8
8
  - Kim Burgestrand
@@ -27,8 +27,8 @@ dependencies:
27
27
  description:
28
28
  email:
29
29
  - kim@burgestrand.se
30
- executables: []
31
-
30
+ executables:
31
+ - banisterfiend
32
32
  extensions: []
33
33
 
34
34
  extra_rdoc_files: []
@@ -39,6 +39,7 @@ files:
39
39
  - Gemfile
40
40
  - Rakefile
41
41
  - banisterfiend.gemspec
42
+ - bin/banisterfiend
42
43
  - lib/banisterfiend.rb
43
44
  - lib/banisterfiend/version.rb
44
45
  - test/banisterfiend.rb