fubu 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +19 -0
- data/.gitmodules +3 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +10 -0
- data/bin/fubu +3 -0
- data/bin/fubu_exe/Bottles.Services.dll +0 -0
- data/bin/fubu_exe/Bottles.dll +0 -0
- data/bin/fubu_exe/Fubu.exe +0 -0
- data/bin/fubu_exe/FubuCore.dll +0 -0
- data/bin/fubu_exe/FubuLocalization.dll +0 -0
- data/bin/fubu_exe/FubuMVC.Core.dll +0 -0
- data/bin/fubu_exe/FubuMVC.Katana.dll +0 -0
- data/bin/fubu_exe/FubuMVC.OwinHost.dll +0 -0
- data/bin/fubu_exe/FubuMVC.StructureMap.dll +0 -0
- data/bin/fubu_exe/HtmlTags.dll +0 -0
- data/bin/fubu_exe/Ionic.Zip.dll +0 -0
- data/bin/fubu_exe/Microsoft.Owin.Host.HttpListener.dll +0 -0
- data/bin/fubu_exe/Microsoft.Owin.Hosting.dll +0 -0
- data/bin/fubu_exe/Newtonsoft.Json.dll +0 -0
- data/bin/fubu_exe/Owin.Extensions.dll +0 -0
- data/bin/fubu_exe/Owin.dll +0 -0
- data/bin/fubu_exe/StructureMap.dll +0 -0
- data/bin/fubu_exe/WebDriver.dll +0 -0
- data/bin/fubu_exe/file-patterns.txt +12 -0
- data/bin/fubu_exe/ripple.xml +3 -0
- data/fubu.gemspec +20 -0
- data/lib/fubu/ripple.rb +26 -0
- data/lib/fubu/version.rb +3 -0
- data/lib/fubu.rb +5 -0
- data/ripple.cmd +1 -0
- data/ripple.config +14 -0
- data/vendor/Visualizations.Harness/Visualizations.Harness.csproj +157 -0
- data/vendor/Visualizations.Harness/ripple.dependencies.config +1 -0
- metadata +97 -0
data/.gitignore
ADDED
data/.gitmodules
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Ryan Rauh
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# Fubu
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'fubu'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install fubu
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
data/bin/fubu
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,12 @@
|
|
1
|
+
*.spark=Content
|
2
|
+
*.dll=AppDomain
|
3
|
+
*.exe=AppDomain
|
4
|
+
*.script.config=Application
|
5
|
+
*.asset.config=Application
|
6
|
+
*.assets.config=Application
|
7
|
+
*.cshtml=Content
|
8
|
+
*.css=Content
|
9
|
+
*.js=Content
|
10
|
+
*.coffee=Content
|
11
|
+
web.config=AppDomain
|
12
|
+
*.config=Application
|
data/fubu.gemspec
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'fubu/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.name = "fubu"
|
8
|
+
gem.version = Fubu::VERSION
|
9
|
+
gem.authors = ["Ryan Rauh"]
|
10
|
+
gem.email = ["rauh.ryan@gmail.com"]
|
11
|
+
gem.description = %q{Quickly install fubu command line tools}
|
12
|
+
gem.summary = %q{installs various command line tools for the fubu family of projects}
|
13
|
+
gem.homepage = ""
|
14
|
+
|
15
|
+
gem.files = `git ls-files`.split($/)
|
16
|
+
gem.executables = ["fubu"]
|
17
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
18
|
+
gem.require_paths = ["lib"]
|
19
|
+
gem.add_dependency "thor", "~> 0.14"
|
20
|
+
end
|
data/lib/fubu/ripple.rb
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
require "thor"
|
2
|
+
|
3
|
+
class Ripple < Thor
|
4
|
+
include Thor::Actions
|
5
|
+
|
6
|
+
def self.source_root
|
7
|
+
File.expand_path "../../..", __FILE__
|
8
|
+
end
|
9
|
+
|
10
|
+
desc "update the nugets", "runs ripple update"
|
11
|
+
def update
|
12
|
+
`#{Ripple.source_root}/buildsupport/ripple.exe update`
|
13
|
+
move_files
|
14
|
+
end
|
15
|
+
|
16
|
+
private
|
17
|
+
|
18
|
+
def move_files
|
19
|
+
Dir.glob("*/packages/**tools").each do |tool|
|
20
|
+
puts /packages\/(\w+)\/tools/.match(tool)[0]
|
21
|
+
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
26
|
+
|
data/lib/fubu/version.rb
ADDED
data/lib/fubu.rb
ADDED
data/ripple.cmd
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
buildsupport\ripple.exe %*
|
data/ripple.config
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<ripple xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
3
|
+
<Name>cli</Name>
|
4
|
+
<NugetSpecFolder>packaging/nuget</NugetSpecFolder>
|
5
|
+
<SourceFolder>vendor</SourceFolder>
|
6
|
+
<BuildCommand>rake</BuildCommand>
|
7
|
+
<FastBuildCommand>rake compile</FastBuildCommand>
|
8
|
+
<Feeds>
|
9
|
+
<Feed Url="http://build.fubu-project.org/guestAuth/app/nuget/v1/FeedService.svc" Mode="Float" />
|
10
|
+
<Feed Url="http://nuget.org/api/v2" Mode="Fixed" />
|
11
|
+
<Feed Url="http://packages.nuget.org/v1/FeedService.svc/" Mode="Fixed" />
|
12
|
+
</Feeds>
|
13
|
+
<Nugets />
|
14
|
+
</ripple>
|
@@ -0,0 +1,157 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
+
<PropertyGroup>
|
4
|
+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
5
|
+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
6
|
+
<ProductVersion></ProductVersion>
|
7
|
+
<SchemaVersion>2.0</SchemaVersion>
|
8
|
+
<ProjectGuid>{04E284CC-5FD0-4509-B8CD-DE1CF5BAE14B}</ProjectGuid>
|
9
|
+
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
|
10
|
+
<OutputType>Library</OutputType>
|
11
|
+
<AppDesignerFolder>Properties</AppDesignerFolder>
|
12
|
+
<RootNamespace>Visualizations.Harness</RootNamespace>
|
13
|
+
<AssemblyName>Visualizations.Harness</AssemblyName>
|
14
|
+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
15
|
+
<UseIISExpress>false</UseIISExpress>
|
16
|
+
</PropertyGroup>
|
17
|
+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
18
|
+
<DebugSymbols>true</DebugSymbols>
|
19
|
+
<DebugType>full</DebugType>
|
20
|
+
<Optimize>false</Optimize>
|
21
|
+
<OutputPath>bin\</OutputPath>
|
22
|
+
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
23
|
+
<ErrorReport>prompt</ErrorReport>
|
24
|
+
<WarningLevel>4</WarningLevel>
|
25
|
+
</PropertyGroup>
|
26
|
+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
27
|
+
<DebugType>pdbonly</DebugType>
|
28
|
+
<Optimize>true</Optimize>
|
29
|
+
<OutputPath>bin\</OutputPath>
|
30
|
+
<DefineConstants>TRACE</DefineConstants>
|
31
|
+
<ErrorReport>prompt</ErrorReport>
|
32
|
+
<WarningLevel>4</WarningLevel>
|
33
|
+
</PropertyGroup>
|
34
|
+
<ItemGroup>
|
35
|
+
<Reference Include="Bottles">
|
36
|
+
<HintPath>..\packages\Bottles\lib\Bottles.dll</HintPath>
|
37
|
+
</Reference>
|
38
|
+
<Reference Include="Fubu">
|
39
|
+
<HintPath>..\packages\fubu\lib\net40\Fubu.exe</HintPath>
|
40
|
+
</Reference>
|
41
|
+
<Reference Include="FubuCore">
|
42
|
+
<HintPath>..\packages\FubuCore\lib\FubuCore.dll</HintPath>
|
43
|
+
</Reference>
|
44
|
+
<Reference Include="FubuLocalization">
|
45
|
+
<HintPath>..\packages\FubuLocalization\lib\FubuLocalization.dll</HintPath>
|
46
|
+
</Reference>
|
47
|
+
<Reference Include="FubuMVC.Core">
|
48
|
+
<HintPath>..\packages\FubuMVC.Core\lib\net40\FubuMVC.Core.dll</HintPath>
|
49
|
+
</Reference>
|
50
|
+
<Reference Include="FubuMVC.Core.Assets">
|
51
|
+
<HintPath>..\packages\FubuMVC.Core.Assets\lib\net40\FubuMVC.Core.Assets.dll</HintPath>
|
52
|
+
</Reference>
|
53
|
+
<Reference Include="FubuMVC.Core.UI">
|
54
|
+
<HintPath>..\packages\FubuMVC.Core.UI\lib\net40\FubuMVC.Core.UI.dll</HintPath>
|
55
|
+
</Reference>
|
56
|
+
<Reference Include="FubuMVC.Core.View">
|
57
|
+
<HintPath>..\packages\FubuMVC.Core.View\lib\net40\FubuMVC.Core.View.dll</HintPath>
|
58
|
+
</Reference>
|
59
|
+
<Reference Include="FubuMVC.Diagnostics">
|
60
|
+
<HintPath>..\packages\FubuMVC.Diagnostics\lib\net40\FubuMVC.Diagnostics.dll</HintPath>
|
61
|
+
</Reference>
|
62
|
+
<Reference Include="FubuMVC.JQueryUI">
|
63
|
+
<HintPath>..\packages\FubuMVC.JQueryUI\lib\net40\FubuMVC.JQueryUI.dll</HintPath>
|
64
|
+
</Reference>
|
65
|
+
<Reference Include="FubuMVC.Media">
|
66
|
+
<HintPath>..\packages\FubuMVC.Media\lib\net40\FubuMVC.Media.dll</HintPath>
|
67
|
+
</Reference>
|
68
|
+
<Reference Include="FubuMVC.Navigation">
|
69
|
+
<HintPath>..\packages\FubuMVC.Navigation\lib\net40\FubuMVC.Navigation.dll</HintPath>
|
70
|
+
</Reference>
|
71
|
+
<Reference Include="FubuMVC.SlickGrid">
|
72
|
+
<HintPath>..\packages\FubuMVC.SlickGrid\lib\net40\FubuMVC.SlickGrid.dll</HintPath>
|
73
|
+
</Reference>
|
74
|
+
<Reference Include="FubuMVC.Spark">
|
75
|
+
<HintPath>..\packages\FubuMVC.Spark\lib\net40\FubuMVC.Spark.dll</HintPath>
|
76
|
+
</Reference>
|
77
|
+
<Reference Include="FubuMVC.StructureMap">
|
78
|
+
<HintPath>..\packages\FubuMVC.StructureMap\lib\net40\FubuMVC.StructureMap.dll</HintPath>
|
79
|
+
</Reference>
|
80
|
+
<Reference Include="FubuMVC.TwitterBootstrap">
|
81
|
+
<HintPath>..\packages\FubuMVC.TwitterBootstrap\lib\net40\FubuMVC.TwitterBootstrap.dll</HintPath>
|
82
|
+
</Reference>
|
83
|
+
<Reference Include="HtmlTags">
|
84
|
+
<HintPath>..\packages\HtmlTags\lib\4.0\HtmlTags.dll</HintPath>
|
85
|
+
</Reference>
|
86
|
+
<Reference Include="Microsoft.CSharp" />
|
87
|
+
<Reference Include="Spark">
|
88
|
+
<HintPath>..\packages\Spark\lib\NET40\Spark.dll</HintPath>
|
89
|
+
</Reference>
|
90
|
+
<Reference Include="StructureMap">
|
91
|
+
<HintPath>..\packages\StructureMap\lib\StructureMap.dll</HintPath>
|
92
|
+
</Reference>
|
93
|
+
<Reference Include="System" />
|
94
|
+
<Reference Include="System.Configuration" />
|
95
|
+
<Reference Include="System.Core" />
|
96
|
+
<Reference Include="System.Data" />
|
97
|
+
<Reference Include="System.Data.DataSetExtensions" />
|
98
|
+
<Reference Include="System.Drawing" />
|
99
|
+
<Reference Include="System.EnterpriseServices" />
|
100
|
+
<Reference Include="System.Web" />
|
101
|
+
<Reference Include="System.Web.ApplicationServices" />
|
102
|
+
<Reference Include="System.Web.DynamicData" />
|
103
|
+
<Reference Include="System.Web.Entity" />
|
104
|
+
<Reference Include="System.Web.Extensions" />
|
105
|
+
<Reference Include="System.Web.Services" />
|
106
|
+
<Reference Include="System.Xml" />
|
107
|
+
<Reference Include="System.Xml.Linq" />
|
108
|
+
</ItemGroup>
|
109
|
+
<ItemGroup>
|
110
|
+
<Content Include="Global.asax" />
|
111
|
+
<Content Include="Web.config" />
|
112
|
+
<Content Include="Web.Debug.config">
|
113
|
+
<DependentUpon>Web.config</DependentUpon>
|
114
|
+
</Content>
|
115
|
+
<Content Include="Web.Release.config">
|
116
|
+
<DependentUpon>Web.config</DependentUpon>
|
117
|
+
</Content>
|
118
|
+
</ItemGroup>
|
119
|
+
<ItemGroup>
|
120
|
+
<Compile Include="Global.asax.cs">
|
121
|
+
<DependentUpon>Global.asax</DependentUpon>
|
122
|
+
</Compile>
|
123
|
+
<Compile Include="Properties\AssemblyInfo.cs" />
|
124
|
+
</ItemGroup>
|
125
|
+
<ItemGroup>
|
126
|
+
<ProjectReference Include="..\FubuMVC.Visualizations.Diagnostics\FubuMVC.Visualizations.Diagnostics.csproj">
|
127
|
+
<Project>{6CE3F704-CC12-4E68-AA01-1A42615E58AF}</Project>
|
128
|
+
<Name>FubuMVC.Visualizations.Diagnostics</Name>
|
129
|
+
</ProjectReference>
|
130
|
+
</ItemGroup>
|
131
|
+
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
132
|
+
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" />
|
133
|
+
<ProjectExtensions>
|
134
|
+
<VisualStudio>
|
135
|
+
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
|
136
|
+
<WebProjectProperties>
|
137
|
+
<UseIIS>False</UseIIS>
|
138
|
+
<AutoAssignPort>True</AutoAssignPort>
|
139
|
+
<DevelopmentServerPort>2523</DevelopmentServerPort>
|
140
|
+
<DevelopmentServerVPath>/</DevelopmentServerVPath>
|
141
|
+
<IISUrl></IISUrl>
|
142
|
+
<NTLMAuthentication>False</NTLMAuthentication>
|
143
|
+
<UseCustomServer>False</UseCustomServer>
|
144
|
+
<CustomServerUrl></CustomServerUrl>
|
145
|
+
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
|
146
|
+
</WebProjectProperties>
|
147
|
+
</FlavorProperties>
|
148
|
+
</VisualStudio>
|
149
|
+
</ProjectExtensions>
|
150
|
+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
151
|
+
Other similar extension points exist, see Microsoft.Common.targets.
|
152
|
+
<Target Name="BeforeBuild">
|
153
|
+
</Target>
|
154
|
+
<Target Name="AfterBuild">
|
155
|
+
</Target>
|
156
|
+
-->
|
157
|
+
</Project>
|
@@ -0,0 +1 @@
|
|
1
|
+
fubu
|
metadata
ADDED
@@ -0,0 +1,97 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fubu
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Ryan Rauh
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-04-22 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: thor
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0.14'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.14'
|
30
|
+
description: Quickly install fubu command line tools
|
31
|
+
email:
|
32
|
+
- rauh.ryan@gmail.com
|
33
|
+
executables:
|
34
|
+
- fubu
|
35
|
+
extensions: []
|
36
|
+
extra_rdoc_files: []
|
37
|
+
files:
|
38
|
+
- .gitignore
|
39
|
+
- .gitmodules
|
40
|
+
- Gemfile
|
41
|
+
- LICENSE.txt
|
42
|
+
- README.md
|
43
|
+
- Rakefile
|
44
|
+
- bin/fubu
|
45
|
+
- bin/fubu_exe/Bottles.Services.dll
|
46
|
+
- bin/fubu_exe/Bottles.dll
|
47
|
+
- bin/fubu_exe/Fubu.exe
|
48
|
+
- bin/fubu_exe/FubuCore.dll
|
49
|
+
- bin/fubu_exe/FubuLocalization.dll
|
50
|
+
- bin/fubu_exe/FubuMVC.Core.dll
|
51
|
+
- bin/fubu_exe/FubuMVC.Katana.dll
|
52
|
+
- bin/fubu_exe/FubuMVC.OwinHost.dll
|
53
|
+
- bin/fubu_exe/FubuMVC.StructureMap.dll
|
54
|
+
- bin/fubu_exe/HtmlTags.dll
|
55
|
+
- bin/fubu_exe/Ionic.Zip.dll
|
56
|
+
- bin/fubu_exe/Microsoft.Owin.Host.HttpListener.dll
|
57
|
+
- bin/fubu_exe/Microsoft.Owin.Hosting.dll
|
58
|
+
- bin/fubu_exe/Newtonsoft.Json.dll
|
59
|
+
- bin/fubu_exe/Owin.Extensions.dll
|
60
|
+
- bin/fubu_exe/Owin.dll
|
61
|
+
- bin/fubu_exe/StructureMap.dll
|
62
|
+
- bin/fubu_exe/WebDriver.dll
|
63
|
+
- bin/fubu_exe/file-patterns.txt
|
64
|
+
- bin/fubu_exe/ripple.xml
|
65
|
+
- fubu.gemspec
|
66
|
+
- lib/fubu.rb
|
67
|
+
- lib/fubu/ripple.rb
|
68
|
+
- lib/fubu/version.rb
|
69
|
+
- ripple.cmd
|
70
|
+
- ripple.config
|
71
|
+
- vendor/Visualizations.Harness/Visualizations.Harness.csproj
|
72
|
+
- vendor/Visualizations.Harness/ripple.dependencies.config
|
73
|
+
homepage: ''
|
74
|
+
licenses: []
|
75
|
+
post_install_message:
|
76
|
+
rdoc_options: []
|
77
|
+
require_paths:
|
78
|
+
- lib
|
79
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
80
|
+
none: false
|
81
|
+
requirements:
|
82
|
+
- - ! '>='
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: '0'
|
85
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
86
|
+
none: false
|
87
|
+
requirements:
|
88
|
+
- - ! '>='
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
requirements: []
|
92
|
+
rubyforge_project:
|
93
|
+
rubygems_version: 1.8.24
|
94
|
+
signing_key:
|
95
|
+
specification_version: 3
|
96
|
+
summary: installs various command line tools for the fubu family of projects
|
97
|
+
test_files: []
|