every_day_irb 1.4.0 → 1.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ M2I5MGNiM2NmMzI1ZDc4NjVkMWM1MTRmMDU2OTU4YmJlZDhmNGYyYw==
5
+ data.tar.gz: !binary |-
6
+ ZGJlNmRmNGJmYTcxNjY2ZTVmM2U2Y2U3YzU2YjVlYmQzMzJkMTE0MA==
7
+ !binary "U0hBNTEy":
8
+ metadata.gz: !binary |-
9
+ M2UyY2JlOGVkYWJlODY4NjYyMTE3NGFiZjJjMjJmNTE3ZWViMDBiMzYxZmFi
10
+ Njk0MGIzN2UzMmY0MmEzMDdiMzgyZjhmODlhMTdhMTRiMjkwMjYxYWM2N2Y0
11
+ NjU0ZDkxYWIxMjEzMjFhMjdhYzM3MmQzNzgyOTUwN2RkMjUzMjg=
12
+ data.tar.gz: !binary |-
13
+ OTJhM2Q4M2ZhYTcxYWYyNDAyMzlmYzA2NDFkMzA1M2RiYjQyODNiZDdjZGRi
14
+ MjMzMWIzZDE5MzVhYzU2OWM1MTUyZWZlNmM4YmMxNDE3NDQ0MTJkNmFhODg4
15
+ NWY4YmY5ZGQyNGY2NTNmMDk1MGRiZDhjYzI0MjUyZTczMmE4MjQ=
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2010-2012 Jan Lelis
1
+ Copyright (c) 2010-2013 Jan Lelis
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -1,17 +1,18 @@
1
1
  # -*- encoding: utf-8 -*-
2
- require 'rubygems' unless defined? Gem
2
+ require File.dirname(__FILE__) + '/lib/irbtools/configure'
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = 'every_day_irb'
6
- s.version = File.read('VERSION').chomp
6
+ s.version = Irbtools::VERSION
7
7
 
8
8
  s.authors = ["Jan Lelis"]
9
9
  s.summary = 'every_day_irb defines helper methods that simplify life in irb.'
10
10
  s.description = 'every_day_irb defines helper methods that simplify life in irb.: ls, cat, rq, rrq, ld, session_history, reset!, clear, ...'
11
11
  s.email = 'mail@janlelis.de'
12
12
  s.extra_rdoc_files = %w[LICENSE]
13
- s.files = Dir.glob(%w[lib/every_day_irb.rb VERSION every_day_irb.gemspec])
13
+ s.files = Dir.glob(%w[lib/every_day_irb.rb every_day_irb.gemspec])
14
14
  s.homepage = 'http://github.com/janlelis/irbtools'
15
15
  s.required_ruby_version = '>= 1.8.7'
16
+ s.license = 'MIT'
16
17
  s.add_development_dependency %q<rspec>
17
18
  end
data/lib/every_day_irb.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # every_day_irb defines some helper methods that might be useful in every-day irb usage
2
2
 
3
3
  module EveryDayIrb
4
- VERSION = File.read( File.dirname(__FILE__) + '/../VERSION' ).chomp
4
+ VERSION = "1.5.0"
5
5
  extend self
6
6
 
7
7
  # shows the contents of your current directory (more such commands available by FileUtils)
metadata CHANGED
@@ -1,20 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: every_day_irb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
5
- prerelease:
4
+ version: 1.5.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Jan Lelis
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-12-02 00:00:00.000000000 Z
11
+ date: 2013-05-27 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rspec
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
17
  - - ! '>='
20
18
  - !ruby/object:Gem::Version
@@ -22,7 +20,6 @@ dependencies:
22
20
  type: :development
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
24
  - - ! '>='
28
25
  - !ruby/object:Gem::Version
@@ -36,32 +33,31 @@ extra_rdoc_files:
36
33
  - LICENSE
37
34
  files:
38
35
  - lib/every_day_irb.rb
39
- - VERSION
40
36
  - every_day_irb.gemspec
41
37
  - LICENSE
42
38
  homepage: http://github.com/janlelis/irbtools
43
- licenses: []
39
+ licenses:
40
+ - MIT
41
+ metadata: {}
44
42
  post_install_message:
45
43
  rdoc_options: []
46
44
  require_paths:
47
45
  - lib
48
46
  required_ruby_version: !ruby/object:Gem::Requirement
49
- none: false
50
47
  requirements:
51
48
  - - ! '>='
52
49
  - !ruby/object:Gem::Version
53
50
  version: 1.8.7
54
51
  required_rubygems_version: !ruby/object:Gem::Requirement
55
- none: false
56
52
  requirements:
57
53
  - - ! '>='
58
54
  - !ruby/object:Gem::Version
59
55
  version: '0'
60
56
  requirements: []
61
57
  rubyforge_project:
62
- rubygems_version: 1.8.24
58
+ rubygems_version: 2.0.3
63
59
  signing_key:
64
- specification_version: 3
60
+ specification_version: 4
65
61
  summary: every_day_irb defines helper methods that simplify life in irb.
66
62
  test_files: []
67
63
  has_rdoc:
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 1.4.0