bosdk_designer 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/.document +1 -2
- data/.gitignore +2 -0
- data/README.md +21 -0
- data/Rakefile +8 -10
- data/VERSION +1 -1
- data/bosdk_designer.gemspec +57 -0
- metadata +7 -6
- data/README.rdoc +0 -18
data/.document
CHANGED
data/.gitignore
CHANGED
data/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
BOSDK Designer
|
|
2
|
+
==============
|
|
3
|
+
|
|
4
|
+
This library gives you access to the Business Objects Universe Designer through
|
|
5
|
+
the Ruby WIN32 API.
|
|
6
|
+
|
|
7
|
+
Note on Patches/Pull Requests
|
|
8
|
+
-----------------------------
|
|
9
|
+
|
|
10
|
+
- Fork the project.
|
|
11
|
+
- Make your feature addition or bug fix.
|
|
12
|
+
- Add tests for it. This is important so I don't break it in a
|
|
13
|
+
future version unintentionally.
|
|
14
|
+
- Commit, do not mess with rakefile, version, or history.
|
|
15
|
+
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
|
16
|
+
- Send me a pull request. Bonus points for topic branches.
|
|
17
|
+
|
|
18
|
+
Copyright
|
|
19
|
+
---------
|
|
20
|
+
|
|
21
|
+
Copyright (c) 2010 Shane Emmons. See LICENSE for details.
|
data/Rakefile
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
require 'rubygems'
|
|
2
2
|
require 'rake'
|
|
3
|
+
require 'rake/clean'
|
|
4
|
+
|
|
5
|
+
CLOBBER.include 'pkg'
|
|
6
|
+
CLOBBER.include 'doc'
|
|
7
|
+
CLOBBER.include '.yardoc'
|
|
3
8
|
|
|
4
9
|
begin
|
|
5
10
|
require 'jeweler'
|
|
@@ -8,7 +13,7 @@ begin
|
|
|
8
13
|
gem.summary = %Q{Access the Business Objects Universe Designer using Ruby}
|
|
9
14
|
gem.description = %Q{This library gives you access to the Business Objects Universe Designer through the Ruby WIN32 API.}
|
|
10
15
|
gem.email = "semmons99@gmail.com"
|
|
11
|
-
gem.homepage = "http://semmons99.github.com/
|
|
16
|
+
gem.homepage = "http://semmons99.github.com/bosdk-designer"
|
|
12
17
|
gem.authors = ["Shane Emmons"]
|
|
13
18
|
gem.rubyforge_project = "bosdk-designer"
|
|
14
19
|
gem.add_development_dependency "rspec", "~> 1.3.0"
|
|
@@ -38,12 +43,5 @@ task :spec => :check_dependencies
|
|
|
38
43
|
|
|
39
44
|
task :default => :spec
|
|
40
45
|
|
|
41
|
-
require '
|
|
42
|
-
Rake::
|
|
43
|
-
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
|
44
|
-
|
|
45
|
-
rdoc.rdoc_dir = 'rdoc'
|
|
46
|
-
rdoc.title = "bosdk_designer #{version}"
|
|
47
|
-
rdoc.rdoc_files.include('README*')
|
|
48
|
-
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
49
|
-
end
|
|
46
|
+
require 'yard'
|
|
47
|
+
YARD::Rake::YardocTask.new
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{bosdk_designer}
|
|
8
|
+
s.version = "0.1.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Shane Emmons"]
|
|
12
|
+
s.date = %q{2010-04-28}
|
|
13
|
+
s.description = %q{This library gives you access to the Business Objects Universe Designer through the Ruby WIN32 API.}
|
|
14
|
+
s.email = %q{semmons99@gmail.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.md"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".document",
|
|
21
|
+
".gitignore",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"README.md",
|
|
24
|
+
"Rakefile",
|
|
25
|
+
"VERSION",
|
|
26
|
+
"bosdk_designer.gemspec",
|
|
27
|
+
"lib/bosdk_designer.rb",
|
|
28
|
+
"lib/bosdk_designer/designer.rb",
|
|
29
|
+
"spec/designer_spec.rb",
|
|
30
|
+
"spec/spec.opts",
|
|
31
|
+
"spec/spec_helper.rb"
|
|
32
|
+
]
|
|
33
|
+
s.homepage = %q{http://semmons99.github.com/bosdk-designer}
|
|
34
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
35
|
+
s.require_paths = ["lib"]
|
|
36
|
+
s.rubyforge_project = %q{bosdk-designer}
|
|
37
|
+
s.rubygems_version = %q{1.3.6}
|
|
38
|
+
s.summary = %q{Access the Business Objects Universe Designer using Ruby}
|
|
39
|
+
s.test_files = [
|
|
40
|
+
"spec/designer_spec.rb",
|
|
41
|
+
"spec/spec_helper.rb"
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
if s.respond_to? :specification_version then
|
|
45
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
46
|
+
s.specification_version = 3
|
|
47
|
+
|
|
48
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
49
|
+
s.add_development_dependency(%q<rspec>, ["~> 1.3.0"])
|
|
50
|
+
else
|
|
51
|
+
s.add_dependency(%q<rspec>, ["~> 1.3.0"])
|
|
52
|
+
end
|
|
53
|
+
else
|
|
54
|
+
s.add_dependency(%q<rspec>, ["~> 1.3.0"])
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 0.1.
|
|
8
|
+
- 1
|
|
9
|
+
version: 0.1.1
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Shane Emmons
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-
|
|
17
|
+
date: 2010-04-28 00:00:00 -04:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
@@ -39,21 +39,22 @@ extensions: []
|
|
|
39
39
|
|
|
40
40
|
extra_rdoc_files:
|
|
41
41
|
- LICENSE
|
|
42
|
-
- README.
|
|
42
|
+
- README.md
|
|
43
43
|
files:
|
|
44
44
|
- .document
|
|
45
45
|
- .gitignore
|
|
46
46
|
- LICENSE
|
|
47
|
-
- README.
|
|
47
|
+
- README.md
|
|
48
48
|
- Rakefile
|
|
49
49
|
- VERSION
|
|
50
|
+
- bosdk_designer.gemspec
|
|
50
51
|
- lib/bosdk_designer.rb
|
|
51
52
|
- lib/bosdk_designer/designer.rb
|
|
52
53
|
- spec/designer_spec.rb
|
|
53
54
|
- spec/spec.opts
|
|
54
55
|
- spec/spec_helper.rb
|
|
55
56
|
has_rdoc: true
|
|
56
|
-
homepage: http://semmons99.github.com/
|
|
57
|
+
homepage: http://semmons99.github.com/bosdk-designer
|
|
57
58
|
licenses: []
|
|
58
59
|
|
|
59
60
|
post_install_message:
|
data/README.rdoc
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
= bosdk_designer
|
|
2
|
-
|
|
3
|
-
This library gives you access to the Business Objects Universe Designer through
|
|
4
|
-
the Ruby WIN32 API.
|
|
5
|
-
|
|
6
|
-
== Note on Patches/Pull Requests
|
|
7
|
-
|
|
8
|
-
* Fork the project.
|
|
9
|
-
* Make your feature addition or bug fix.
|
|
10
|
-
* Add tests for it. This is important so I don't break it in a
|
|
11
|
-
future version unintentionally.
|
|
12
|
-
* Commit, do not mess with rakefile, version, or history.
|
|
13
|
-
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
|
14
|
-
* Send me a pull request. Bonus points for topic branches.
|
|
15
|
-
|
|
16
|
-
== Copyright
|
|
17
|
-
|
|
18
|
-
Copyright (c) 2010 Shane Emmons. See LICENSE for details.
|