hippeis 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,35 @@
1
+ # -*- ruby -*-
2
+
3
+ require "autotest/restart"
4
+
5
+ Autotest.add_hook :initialize do |at|
6
+ at.add_mapping(/.*\.c/) do |f, _|
7
+ at.files_matching(/_.*rb$/)
8
+ end
9
+ end
10
+
11
+ Autotest.add_hook :run_command do |at|
12
+ system "rake clean compile"
13
+ end
14
+
15
+ # Autotest.add_hook :initialize do |at|
16
+ # at.testlib = "minitest/unit"
17
+ #
18
+ # at.extra_files << "../some/external/dependency.rb"
19
+ #
20
+ # at.libs << ":../some/external"
21
+ #
22
+ # at.add_exception "vendor"
23
+ #
24
+ # at.add_mapping(/dependency.rb/) do |f, _|
25
+ # at.files_matching(/test_.*rb$/)
26
+ # end
27
+ #
28
+ # %w(TestA TestB).each do |klass|
29
+ # at.extra_class_map[klass] = "test/test_misc.rb"
30
+ # end
31
+ # end
32
+
33
+ # Autotest.add_hook :run_command do |at|
34
+ # system "rake build"
35
+ # end
File without changes
@@ -0,0 +1,6 @@
1
+ === 1.0.0 / 2013-02-04
2
+
3
+ * 1 major enhancement
4
+
5
+ * Birthday!
6
+
@@ -0,0 +1,8 @@
1
+ .autotest
2
+ History.txt
3
+ Manifest.txt
4
+ README.txt
5
+ Rakefile
6
+ bin/hippeis
7
+ lib/hippeis.rb
8
+ test/test_hippeis.rb
@@ -0,0 +1,47 @@
1
+ = hippeis
2
+
3
+ == DESCRIPTION:
4
+
5
+ == FEATURES/PROBLEMS:
6
+
7
+ == SYNOPSIS:
8
+
9
+
10
+ == REQUIREMENTS:
11
+
12
+ == INSTALL:
13
+
14
+
15
+ == DEVELOPERS:
16
+
17
+ After checking out the source, run:
18
+
19
+ $ rake newb
20
+
21
+ This task will install any missing dependencies, run the tests/specs,
22
+ and generate the RDoc.
23
+
24
+ == LICENSE:
25
+
26
+ (The MIT License)
27
+
28
+ Copyright (c) 2013 FIX
29
+
30
+ Permission is hereby granted, free of charge, to any person obtaining
31
+ a copy of this software and associated documentation files (the
32
+ 'Software'), to deal in the Software without restriction, including
33
+ without limitation the rights to use, copy, modify, merge, publish,
34
+ distribute, sublicense, and/or sell copies of the Software, and to
35
+ permit persons to whom the Software is furnished to do so, subject to
36
+ the following conditions:
37
+
38
+ The above copyright notice and this permission notice shall be
39
+ included in all copies or substantial portions of the Software.
40
+
41
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
42
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
43
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
44
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
45
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
46
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
47
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,15 @@
1
+ require "rubygems"
2
+ require "hoe"
3
+
4
+ require "rake/extensiontask"
5
+
6
+ Hoe.spec "hippeis" do
7
+ developer("fdumz", "fdumz")
8
+ license "MIT"
9
+ end
10
+
11
+ Rake::ExtensionTask.new("hippeis") do |ext|
12
+ ext.lib_dir = File.join('lib', "hippeis")
13
+ end
14
+
15
+ Rake::Task[:spec].prerequisites << :compile
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ abort "you need to write me"
@@ -0,0 +1,5 @@
1
+ require 'hippeis/hippeis'
2
+
3
+ module Hippeis
4
+ VERSION = "0.0.1"
5
+ end
File without changes
metadata ADDED
@@ -0,0 +1,94 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hippeis
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 0.0.1
6
+ platform: ruby
7
+ authors:
8
+ - fdumz
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-02-04 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ prerelease: false
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - ~>
19
+ - !ruby/object:Gem::Version
20
+ version: '3.10'
21
+ none: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '3.10'
27
+ none: false
28
+ type: :development
29
+ name: rdoc
30
+ - !ruby/object:Gem::Dependency
31
+ prerelease: false
32
+ requirement: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ~>
35
+ - !ruby/object:Gem::Version
36
+ version: '3.5'
37
+ none: false
38
+ version_requirements: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ~>
41
+ - !ruby/object:Gem::Version
42
+ version: '3.5'
43
+ none: false
44
+ type: :development
45
+ name: hoe
46
+ description: ''
47
+ email:
48
+ - fdumz
49
+ executables:
50
+ - hippeis
51
+ extensions: []
52
+ extra_rdoc_files:
53
+ - History.txt
54
+ - Manifest.txt
55
+ - README.txt
56
+ files:
57
+ - .autotest
58
+ - History.txt
59
+ - Manifest.txt
60
+ - README.txt
61
+ - Rakefile
62
+ - bin/hippeis
63
+ - lib/hippeis.rb
64
+ - test/test_hippeis.rb
65
+ - .gemtest
66
+ homepage:
67
+ licenses:
68
+ - MIT
69
+ post_install_message:
70
+ rdoc_options:
71
+ - --main
72
+ - README.txt
73
+ require_paths:
74
+ - lib
75
+ required_ruby_version: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ! '>='
78
+ - !ruby/object:Gem::Version
79
+ version: '0'
80
+ none: false
81
+ required_rubygems_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ none: false
87
+ requirements: []
88
+ rubyforge_project: hippeis
89
+ rubygems_version: 1.8.24
90
+ signing_key:
91
+ specification_version: 3
92
+ summary: ''
93
+ test_files:
94
+ - test/test_hippeis.rb