cxxproject_console 0.1.6 → 0.1.7

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: bcd5570546b4bd6c4519f5ce2624280a4433381e
4
+ data.tar.gz: a669a6af5202374f74822f4b73bbdef3d60f803c
5
+ SHA512:
6
+ metadata.gz: ce7c625586d4838a4a553d6c4e35db7f33c83f3fdb8dc73cb4b2ab4342dc079deff35efae0d5be9cda9bbbc87c0ad71aeedb42c1055672b43a3350498e1adb81
7
+ data.tar.gz: 53923502577009be6e9203dd3780a4755aa11313ea39e3429c0ed80a8acb256628af259bf818f4a99129a64b4f02e143d500a6af7f4743d9038d926a3b3d8010
@@ -1,3 +1,3 @@
1
1
  module CxxprojectConsole
2
- VERSION = "0.1.6"
2
+ VERSION = "0.1.7"
3
3
  end
metadata CHANGED
@@ -1,30 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cxxproject_console
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
5
- prerelease:
4
+ version: 0.1.7
6
5
  platform: ruby
7
6
  authors:
8
7
  - christian koestlin
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-09-10 00:00:00.000000000 Z
11
+ date: 2016-08-23 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: cxx
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
19
  version: '0'
22
20
  type: :runtime
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
29
26
  version: '0'
30
27
  description: irb-console for cxxproject
@@ -33,34 +30,30 @@ executables: []
33
30
  extensions: []
34
31
  extra_rdoc_files: []
35
32
  files:
36
- - .gitignore
37
- - Rakefile.rb
38
- - cxxproject_console.gemspec
39
33
  - lib/cxxproject_console/plugin.rb
40
34
  - lib/cxxproject_console/version.rb
41
35
  homepage: http://marcmo.github.com/cxxproject/
42
36
  licenses: []
37
+ metadata: {}
43
38
  post_install_message:
44
39
  rdoc_options: []
45
40
  require_paths:
46
41
  - lib
47
42
  required_ruby_version: !ruby/object:Gem::Requirement
48
- none: false
49
43
  requirements:
50
- - - ! '>='
44
+ - - ">="
51
45
  - !ruby/object:Gem::Version
52
46
  version: '0'
53
47
  required_rubygems_version: !ruby/object:Gem::Requirement
54
- none: false
55
48
  requirements:
56
- - - ! '>='
49
+ - - ">="
57
50
  - !ruby/object:Gem::Version
58
51
  version: '0'
59
52
  requirements: []
60
53
  rubyforge_project:
61
- rubygems_version: 1.8.24
54
+ rubygems_version: 2.5.1
62
55
  signing_key:
63
- specification_version: 3
56
+ specification_version: 4
64
57
  summary: interpretes all project definitions and dumps you into an interactive ruby
65
58
  console
66
59
  test_files: []
data/.gitignore DELETED
@@ -1 +0,0 @@
1
- pkg
data/Rakefile.rb DELETED
@@ -1,3 +0,0 @@
1
- require "bundler/gem_tasks"
2
-
3
- task :package => :build
@@ -1,21 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
- gem_name = 'cxxproject_console'
3
- require File.expand_path("lib/#{gem_name}/version")
4
-
5
- spec = Gem::Specification.new do |s|
6
- s.name = gem_name
7
- s.version = CxxprojectConsole::VERSION
8
-
9
- s.description = 'irb-console for cxxproject'
10
- s.summary = 'interpretes all project definitions and dumps you into an interactive ruby console'
11
- s.homepage = 'http://marcmo.github.com/cxxproject/'
12
- s.author = 'christian koestlin'
13
- s.email = 'christian.koestlin@gmail.com'
14
- s.platform = Gem::Platform::RUBY
15
- s.files = `git ls-files`.split($\)
16
- s.require_path = 'lib'
17
-
18
- s.add_dependency 'cxx'
19
-
20
- s.has_rdoc = false
21
- end