cxxproject_console 0.1.0 → 0.1.1
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.
- data/.gitignore +1 -0
- data/Rakefile.rb +3 -0
- data/cxxproject_console.gemspec +16 -0
- metadata +6 -3
data/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pkg
|
data/Rakefile.rb
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
spec = Gem::Specification.new do |s|
|
|
2
|
+
s.name = 'cxxproject_console'
|
|
3
|
+
s.description = 'irb-console for cxxproject'
|
|
4
|
+
s.summary = 'interpretes all project definitions and dumps you into an interactive ruby console'
|
|
5
|
+
s.homepage = 'http://marcmo.github.com/cxxproject/'
|
|
6
|
+
s.version = '0.1.1'
|
|
7
|
+
s.author = 'christian koestlin'
|
|
8
|
+
s.email = 'christian.koestlin@gmail.com'
|
|
9
|
+
s.platform = Gem::Platform::RUBY
|
|
10
|
+
s.files = `git ls-files`.split($\)
|
|
11
|
+
s.require_path = 'lib'
|
|
12
|
+
|
|
13
|
+
s.add_dependency 'cxx'
|
|
14
|
+
|
|
15
|
+
s.has_rdoc = false
|
|
16
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cxxproject_console
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,10 +9,10 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-07-
|
|
12
|
+
date: 2012-07-16 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
|
-
name:
|
|
15
|
+
name: cxx
|
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
@@ -33,6 +33,9 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
+
- .gitignore
|
|
37
|
+
- Rakefile.rb
|
|
38
|
+
- cxxproject_console.gemspec
|
|
36
39
|
- lib/cxxproject_console/plugin.rb
|
|
37
40
|
homepage: http://marcmo.github.com/cxxproject/
|
|
38
41
|
licenses: []
|