Skip to content

Commit

Permalink
Changes for component
Browse files Browse the repository at this point in the history
  • Loading branch information
jdehlin committed May 24, 2014
1 parent 31f899f commit 3d31ce3
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 11 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -16,6 +16,8 @@ build/
[Bb]in/
[Oo]bj/

component/xamarin-component/

# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
!packages/*/build/

Expand Down Expand Up @@ -46,6 +48,7 @@ build/
*.pidb
*.log
*.scc
*.xam

# Visual C++ cache files
ipch/
Expand Down
25 changes: 14 additions & 11 deletions component/Rakefile
@@ -1,9 +1,11 @@
require "rake/clean"



CLEAN.include "*.xam"
CLEAN.include "xamarin-component"

COMPONENT = Xamarin-Sidebar-0.5.xam"
COMPONENT = "Xamarin-Sidebar-0.5.xam"

file "xamarin-component/xamarin-component.exe" do
puts "* Downloading xamarin-component..."
Expand All @@ -16,18 +18,19 @@ end
task :default => "xamarin-component/xamarin-component.exe" do
line = <<-END
mono xamarin-component/xamarin-component.exe create-manually #{COMPONENT} \
--name=“Xamarin Sidebar” \
--summary=“An easy to use and versatile slideout menu.” \
--publisher=“Jack Dehlin“ \
--website="" \
--name="Xamarin Sidebar" \
--summary="An easy to use and versatile slideout menu." \
--publisher="Jack Dehlin" \
--website="https://github.com/jdehlin/Xamarin-Sidebar" \
--publisher-url="https://github.com/jdehlin/Xamarin-Sidebar" \
--details="Details.md" \
--license=../LICENSE.md" \
--license="../LICENSE.md" \
--getting-started="GettingStarted.md" \
--icon="icon_128x128.png" \
--icon="icon_512x512.png" \
--library="ios”:”../Xamarin-Sidebar/bin/Release/Xamarin-Sidebar.dll" \
--sample=A simple iOS Sample.:../SimpleSample/bin/Release/SimpleSample.sln" \
--sample=“An iOS sample using a navigation controller”:”../NavigationSample/bin/Release/NavigationSample.sln"
--icon="Xamarin-Sidebar_128x128.png" \
--icon="Xamarin-Sidebar_512x512.png" \
--library="ios":"../Xamarin-Sidebar/bin/Release/Xamarin-Sidebar.dll" \
--sample="A simple and navigation sample. In the simple sample the menu buttons replace the content view. In the navigation controller the menu buttons push views onto the navigation controller.":"../Xamarin-Sidebar.sln"
END
puts "* Creating #{COMPONENT}..."
puts line.strip.gsub "\t\t", "\\\n "
Expand Down
File renamed without changes
File renamed without changes

0 comments on commit 3d31ce3

Please sign in to comment.