allen 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,64 @@
1
+ .DS_Store
2
+ .AppleDouble
3
+ .LSOverride
4
+ Icon
5
+ ._*
6
+ .Spotlight-V100
7
+ .Trashes
8
+ Thumbs.db
9
+ ehthumbs.db
10
+ Desktop.ini
11
+ $RECYCLE.BIN/
12
+ *.orig
13
+
14
+ .svn
15
+ .hg
16
+ .hgignore
17
+
18
+ [Dd]ebug/
19
+ [Bb]uild/
20
+ [Rr]elease/
21
+ [Bb]in/
22
+ [Oo]bj/
23
+ src/[Pp]ackages/
24
+
25
+ *.aps
26
+ *.build.csdef
27
+ *.cache
28
+ *.ilk
29
+ *.lib
30
+ *.log
31
+ *.meta
32
+ *.ncb
33
+ *.obj
34
+ *.pch
35
+ *.pdb
36
+ *.pgc
37
+ *.pgd
38
+ *.rsp
39
+ *.sbr
40
+ *.scc
41
+ *.sln.docstates
42
+ *.suo
43
+ *.tlb
44
+ *.tlh
45
+ *.tli
46
+ *.tmp
47
+ *.user
48
+ *.vspscc
49
+ *.[Pp]ublish.xml
50
+ *_i.c
51
+ *_p.c
52
+ .builds
53
+
54
+ src/*.Umbraco/App_Data/ClientDependency/
55
+ src/*.Umbraco/App_Data/ExamineIndexes/
56
+ src/*.Umbraco/App_Data/TEMP/
57
+ src/*.Umbraco/App_Data/preview/
58
+ src/*.Umbraco/App_Data/umbraco.config
59
+ src/*.Umbraco/aspnet_client/
60
+ src/*.Umbraco/media/
61
+ src/*.Umbraco/imagecache/
62
+
63
+ *[Rr]e[Ss]harper.user
64
+ _ReSharper.*/
data/templates/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source :rubygems
2
+
3
+ gem 'albacore', '0.3.4'
4
+ gem 'coyote', '1.2.2.rc1', :require => 'coyote/rake'
@@ -0,0 +1,17 @@
1
+ # <%= @name %>
2
+
3
+ ---
4
+
5
+ ## Installation
6
+
7
+ ### Clone
8
+
9
+ git clone git@github.com:imulus/<%= @name %>.git
10
+
11
+ ### Install Dependencies
12
+
13
+ bundle install
14
+
15
+ ### Build
16
+
17
+ rake build
@@ -0,0 +1,101 @@
1
+ require 'bundler'
2
+ begin
3
+ Bundler.require
4
+ rescue
5
+ puts "Installing missing dependencies...\n\n"
6
+ sh "bundle install"
7
+ puts "\nFTFY. Please try again."
8
+ exit 1
9
+ end
10
+
11
+ client = "<%= @name %>"
12
+ projects = ["Umbraco"]
13
+
14
+ css_input = "assets/stylesheets/app/application.less"
15
+ css_output = "css/application.css"
16
+
17
+ js_input = "assets/javascripts/app/application.coffee"
18
+ js_output = "js/application.js"
19
+
20
+ root_dir = File.expand_path("#{File.dirname(__FILE__)}")
21
+ src_dir = "#{root_dir}/src"
22
+ solution = "#{src_dir}/#{client}.sln"
23
+ targets = [:clean, :build]
24
+ parameters = ""
25
+
26
+ # Default Tasks
27
+ task :default => :build
28
+
29
+ # Build Task
30
+ desc "Build the solution and compile all assets"
31
+ task :build => ['assets:build', 'assets:compress'] do
32
+ Rake.application.invoke_task('solution:msbuild["release"]')
33
+ end
34
+
35
+ # Solution Tasks
36
+ namespace :solution do
37
+ desc "Build the solution with a chosen configuration"
38
+ msbuild :msbuild, :config do |msb, args|
39
+ msb.solution = "#{solution}"
40
+ msb.properties = { :configuration => args.config.to_sym }
41
+ msb.parameters = parameters
42
+ msb.targets = targets
43
+ end
44
+ end
45
+
46
+ # Assets Tasks
47
+ namespace :assets do
48
+ desc "Watches assets for every project"
49
+ multitask :watch => projects.map { |project| "#{project.downcase}:assets:watch" }
50
+
51
+ desc "Builds assets for every project"
52
+ task :build => projects.map { |project| "#{project.downcase}:assets:build" }
53
+
54
+ desc "Compresses assets for every project"
55
+ task :compress => projects.map { |project| "#{project.downcase}:assets:compress" }
56
+ end
57
+
58
+ # Project Tasks
59
+ projects.each do |project|
60
+ namespace project.downcase do
61
+ desc "Build the #{project} project and compile assets"
62
+ task :build => ['assets:build'] do
63
+ Rake.application.invoke_task(project.downcase + ':msbuild["release"]')
64
+ end
65
+
66
+ desc "Build the #{project} project"
67
+ msbuild :msbuild, :config do |msb, args|
68
+ msb.solution = "#{src_dir}/#{client}.#{project}/#{client}.#{project}.csproj"
69
+ msb.properties = { :configuration => args.config.to_sym }
70
+ msb.parameters = parameters
71
+ msb.targets = targets
72
+ end
73
+
74
+ namespace :assets do
75
+ desc "Watches assets for the #{project} project"
76
+ multitask :watch => ['css:watch', 'js:watch']
77
+
78
+ desc "Builds assets for the #{project} project"
79
+ multitask :build => ['css:build', 'js:build']
80
+
81
+ desc "Compresses assets for the #{project} project"
82
+ multitask :compress => ['css:compress', 'js:compress']
83
+ end
84
+
85
+ namespace :css do
86
+ desc "Builds CSS for the #{project} project"
87
+ coyote do |config|
88
+ config.input = "#{src_dir}/#{client}.#{project}/#{css_input}"
89
+ config.output = "#{src_dir}/#{client}.#{project}/#{css_output}"
90
+ end
91
+ end
92
+
93
+ namespace :js do
94
+ desc "Builds JS for the #{project} project"
95
+ coyote do |config|
96
+ config.input = "#{src_dir}/#{client}.#{project}/#{js_input}"
97
+ config.output = "#{src_dir}/#{client}.#{project}/#{js_output}"
98
+ end
99
+ end
100
+ end
101
+ end
@@ -0,0 +1,93 @@
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>
7
+ </ProductVersion>
8
+ <SchemaVersion>2.0</SchemaVersion>
9
+ <ProjectGuid>{<%= @umbraco_guid %>}</ProjectGuid>
10
+ <ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
11
+ <OutputType>Library</OutputType>
12
+ <AppDesignerFolder>Properties</AppDesignerFolder>
13
+ <RootNamespace><%= @name %>.Umbraco</RootNamespace>
14
+ <AssemblyName><%= @name %>.Umbraco</AssemblyName>
15
+ <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
16
+ <UseIISExpress>false</UseIISExpress>
17
+ </PropertyGroup>
18
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19
+ <DebugSymbols>true</DebugSymbols>
20
+ <DebugType>full</DebugType>
21
+ <Optimize>false</Optimize>
22
+ <OutputPath>bin\</OutputPath>
23
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
24
+ <ErrorReport>prompt</ErrorReport>
25
+ <WarningLevel>4</WarningLevel>
26
+ </PropertyGroup>
27
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28
+ <DebugType>pdbonly</DebugType>
29
+ <Optimize>true</Optimize>
30
+ <OutputPath>bin\</OutputPath>
31
+ <DefineConstants>TRACE</DefineConstants>
32
+ <ErrorReport>prompt</ErrorReport>
33
+ <WarningLevel>4</WarningLevel>
34
+ </PropertyGroup>
35
+ <ItemGroup>
36
+ <Reference Include="Microsoft.CSharp" />
37
+ <Reference Include="System.Web.DynamicData" />
38
+ <Reference Include="System.Web.Entity" />
39
+ <Reference Include="System.Web.ApplicationServices" />
40
+ <Reference Include="System" />
41
+ <Reference Include="System.Data" />
42
+ <Reference Include="System.Core" />
43
+ <Reference Include="System.Data.DataSetExtensions" />
44
+ <Reference Include="System.Web.Extensions" />
45
+ <Reference Include="System.Xml.Linq" />
46
+ <Reference Include="System.Drawing" />
47
+ <Reference Include="System.Web" />
48
+ <Reference Include="System.Xml" />
49
+ <Reference Include="System.Configuration" />
50
+ <Reference Include="System.Web.Services" />
51
+ <Reference Include="System.EnterpriseServices" />
52
+ </ItemGroup>
53
+ <ItemGroup>
54
+ <Content Include="Web.config" />
55
+ <Content Include="Web.Debug.config">
56
+ <DependentUpon>Web.config</DependentUpon>
57
+ </Content>
58
+ <Content Include="Web.Release.config">
59
+ <DependentUpon>Web.config</DependentUpon>
60
+ </Content>
61
+ </ItemGroup>
62
+ <ItemGroup>
63
+ <Compile Include="Properties\AssemblyInfo.cs" />
64
+ </ItemGroup>
65
+ <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
66
+ <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" />
67
+ <ProjectExtensions>
68
+ <VisualStudio>
69
+ <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
70
+ <WebProjectProperties>
71
+ <UseIIS>False</UseIIS>
72
+ <AutoAssignPort>True</AutoAssignPort>
73
+ <DevelopmentServerPort>49506</DevelopmentServerPort>
74
+ <DevelopmentServerVPath>/</DevelopmentServerVPath>
75
+ <IISUrl>
76
+ </IISUrl>
77
+ <NTLMAuthentication>False</NTLMAuthentication>
78
+ <UseCustomServer>False</UseCustomServer>
79
+ <CustomServerUrl>
80
+ </CustomServerUrl>
81
+ <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
82
+ </WebProjectProperties>
83
+ </FlavorProperties>
84
+ </VisualStudio>
85
+ </ProjectExtensions>
86
+ <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
87
+ Other similar extension points exist, see Microsoft.Common.targets.
88
+ <Target Name="BeforeBuild">
89
+ </Target>
90
+ <Target Name="AfterBuild">
91
+ </Target>
92
+ -->
93
+ </Project>
@@ -0,0 +1,35 @@
1
+ using System.Reflection;
2
+ using System.Runtime.CompilerServices;
3
+ using System.Runtime.InteropServices;
4
+
5
+ // General Information about an assembly is controlled through the following
6
+ // set of attributes. Change these attribute values to modify the information
7
+ // associated with an assembly.
8
+ [assembly: AssemblyTitle("<%= @name %>.Umbraco")]
9
+ [assembly: AssemblyDescription("")]
10
+ [assembly: AssemblyConfiguration("")]
11
+ [assembly: AssemblyCompany("")]
12
+ [assembly: AssemblyProduct("<%= @name %>.Umbraco")]
13
+ [assembly: AssemblyCopyright("Copyright © 2012")]
14
+ [assembly: AssemblyTrademark("")]
15
+ [assembly: AssemblyCulture("")]
16
+
17
+ // Setting ComVisible to false makes the types in this assembly not visible
18
+ // to COM components. If you need to access a type in this assembly from
19
+ // COM, set the ComVisible attribute to true on that type.
20
+ [assembly: ComVisible(false)]
21
+
22
+ // The following GUID is for the ID of the typelib if this project is exposed to COM
23
+ [assembly: Guid("<%= @umbraco_assembly_guid %>")]
24
+
25
+ // Version information for an assembly consists of the following four values:
26
+ //
27
+ // Major Version
28
+ // Minor Version
29
+ // Build Number
30
+ // Revision
31
+ //
32
+ // You can specify all the values or you can default the Revision and Build Numbers
33
+ // by using the '*' as shown below:
34
+ [assembly: AssemblyVersion("1.0.0.0")]
35
+ [assembly: AssemblyFileVersion("1.0.0.0")]
@@ -0,0 +1,9 @@
1
+ <?xml version="1.0"?>
2
+ <configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
3
+ <add key="umbracoDebugMode" value="true" xdt:Transform="Replace" xdt:Locator="Match(key)"/>
4
+
5
+ <system.web>
6
+ <customErrors mode="Off" xdt:Transform="SetAttributes(mode)"/>
7
+ <compilation debug="true" xdt:Transform="SetAttributes(debug)"/>
8
+ </system.web>
9
+ </configuration>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0"?>
2
+ <configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
3
+ <system.web>
4
+ <compilation xdt:Transform="RemoveAttributes(debug)" />
5
+ </system.web>
6
+ </configuration>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0"?>
2
+
3
+ <!--
4
+ For more information on how to configure your ASP.NET application, please visit
5
+ http://go.microsoft.com/fwlink/?LinkId=169433
6
+ -->
7
+
8
+ <configuration>
9
+ <system.web>
10
+ <compilation debug="true" targetFramework="4.0" />
11
+ </system.web>
12
+
13
+ </configuration>
@@ -0,0 +1,53 @@
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>8.0.30703</ProductVersion>
7
+ <SchemaVersion>2.0</SchemaVersion>
8
+ <ProjectGuid>{<%= @umbraco_extensions_guid %>}</ProjectGuid>
9
+ <OutputType>Library</OutputType>
10
+ <AppDesignerFolder>Properties</AppDesignerFolder>
11
+ <RootNamespace><%= @name %>.Umbraco.Extensions</RootNamespace>
12
+ <AssemblyName><%= @name %>.Umbraco.Extensions</AssemblyName>
13
+ <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14
+ <FileAlignment>512</FileAlignment>
15
+ </PropertyGroup>
16
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17
+ <DebugSymbols>true</DebugSymbols>
18
+ <DebugType>full</DebugType>
19
+ <Optimize>false</Optimize>
20
+ <OutputPath>bin\Debug\</OutputPath>
21
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
22
+ <ErrorReport>prompt</ErrorReport>
23
+ <WarningLevel>4</WarningLevel>
24
+ </PropertyGroup>
25
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26
+ <DebugType>pdbonly</DebugType>
27
+ <Optimize>true</Optimize>
28
+ <OutputPath>bin\Release\</OutputPath>
29
+ <DefineConstants>TRACE</DefineConstants>
30
+ <ErrorReport>prompt</ErrorReport>
31
+ <WarningLevel>4</WarningLevel>
32
+ </PropertyGroup>
33
+ <ItemGroup>
34
+ <Reference Include="System" />
35
+ <Reference Include="System.Core" />
36
+ <Reference Include="System.Xml.Linq" />
37
+ <Reference Include="System.Data.DataSetExtensions" />
38
+ <Reference Include="Microsoft.CSharp" />
39
+ <Reference Include="System.Data" />
40
+ <Reference Include="System.Xml" />
41
+ </ItemGroup>
42
+ <ItemGroup>
43
+ <Compile Include="Properties\AssemblyInfo.cs" />
44
+ </ItemGroup>
45
+ <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
46
+ <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
47
+ Other similar extension points exist, see Microsoft.Common.targets.
48
+ <Target Name="BeforeBuild">
49
+ </Target>
50
+ <Target Name="AfterBuild">
51
+ </Target>
52
+ -->
53
+ </Project>
@@ -0,0 +1,36 @@
1
+ using System.Reflection;
2
+ using System.Runtime.CompilerServices;
3
+ using System.Runtime.InteropServices;
4
+
5
+ // General Information about an assembly is controlled through the following
6
+ // set of attributes. Change these attribute values to modify the information
7
+ // associated with an assembly.
8
+ [assembly: AssemblyTitle("<%= @name %>.Umbraco.Extensions")]
9
+ [assembly: AssemblyDescription("")]
10
+ [assembly: AssemblyConfiguration("")]
11
+ [assembly: AssemblyCompany("")]
12
+ [assembly: AssemblyProduct("<%= @name %>.Umbraco.Extensions")]
13
+ [assembly: AssemblyCopyright("Copyright © 2012")]
14
+ [assembly: AssemblyTrademark("")]
15
+ [assembly: AssemblyCulture("")]
16
+
17
+ // Setting ComVisible to false makes the types in this assembly not visible
18
+ // to COM components. If you need to access a type in this assembly from
19
+ // COM, set the ComVisible attribute to true on that type.
20
+ [assembly: ComVisible(false)]
21
+
22
+ // The following GUID is for the ID of the typelib if this project is exposed to COM
23
+ [assembly: Guid("<%= @umbraco_extensions_assembly_guid %>")]
24
+
25
+ // Version information for an assembly consists of the following four values:
26
+ //
27
+ // Major Version
28
+ // Minor Version
29
+ // Build Number
30
+ // Revision
31
+ //
32
+ // You can specify all the values or you can default the Build and Revision Numbers
33
+ // by using the '*' as shown below:
34
+ // [assembly: AssemblyVersion("1.0.*")]
35
+ [assembly: AssemblyVersion("1.0.0.0")]
36
+ [assembly: AssemblyFileVersion("1.0.0.0")]
@@ -0,0 +1,26 @@
1
+ 
2
+ Microsoft Visual Studio Solution File, Format Version 11.00
3
+ # Visual Studio 2010
4
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "<%= @name %>.Umbraco", "<%= @name %>.Umbraco\<%= @name %>.Umbraco.csproj", "{<%= @umbraco_guid %>}"
5
+ EndProject
6
+ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "<%= @name %>.Umbraco.Extensions", "<%= @name %>.Umbraco.Extensions\<%= @name %>.Umbraco.Extensions.csproj", "{<%= @umbraco_extensions_guid %>}"
7
+ EndProject
8
+ Global
9
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
10
+ Debug|Any CPU = Debug|Any CPU
11
+ Release|Any CPU = Release|Any CPU
12
+ EndGlobalSection
13
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
14
+ {<%= @umbraco_guid %>}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15
+ {<%= @umbraco_guid %>}.Debug|Any CPU.Build.0 = Debug|Any CPU
16
+ {<%= @umbraco_guid %>}.Release|Any CPU.ActiveCfg = Release|Any CPU
17
+ {<%= @umbraco_guid %>}.Release|Any CPU.Build.0 = Release|Any CPU
18
+ {<%= @umbraco_extensions_guid %>}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19
+ {<%= @umbraco_extensions_guid %>}.Debug|Any CPU.Build.0 = Debug|Any CPU
20
+ {<%= @umbraco_extensions_guid %>}.Release|Any CPU.ActiveCfg = Release|Any CPU
21
+ {<%= @umbraco_extensions_guid %>}.Release|Any CPU.Build.0 = Release|Any CPU
22
+ EndGlobalSection
23
+ GlobalSection(SolutionProperties) = preSolution
24
+ HideSolutionNode = FALSE
25
+ EndGlobalSection
26
+ EndGlobal
metadata ADDED
@@ -0,0 +1,199 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: allen
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Taylor Smith
9
+ - Casey O'Hara
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2012-11-07 00:00:00.000000000Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: thor
17
+ requirement: &2153487920 !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ~>
21
+ - !ruby/object:Gem::Version
22
+ version: 0.16.0
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: *2153487920
26
+ - !ruby/object:Gem::Dependency
27
+ name: i18n
28
+ requirement: &2153487060 !ruby/object:Gem::Requirement
29
+ none: false
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: 0.6.1
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: *2153487060
37
+ - !ruby/object:Gem::Dependency
38
+ name: active_support
39
+ requirement: &2153485900 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ~>
43
+ - !ruby/object:Gem::Version
44
+ version: 3.0.0
45
+ type: :runtime
46
+ prerelease: false
47
+ version_requirements: *2153485900
48
+ - !ruby/object:Gem::Dependency
49
+ name: albacore
50
+ requirement: &2153484480 !ruby/object:Gem::Requirement
51
+ none: false
52
+ requirements:
53
+ - - =
54
+ - !ruby/object:Gem::Version
55
+ version: 0.3.4
56
+ type: :runtime
57
+ prerelease: false
58
+ version_requirements: *2153484480
59
+ - !ruby/object:Gem::Dependency
60
+ name: coyote
61
+ requirement: &2153483840 !ruby/object:Gem::Requirement
62
+ none: false
63
+ requirements:
64
+ - - =
65
+ - !ruby/object:Gem::Version
66
+ version: 1.2.2.rc1
67
+ type: :runtime
68
+ prerelease: false
69
+ version_requirements: *2153483840
70
+ - !ruby/object:Gem::Dependency
71
+ name: rspec
72
+ requirement: &2153482960 !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - =
76
+ - !ruby/object:Gem::Version
77
+ version: 2.11.0
78
+ type: :development
79
+ prerelease: false
80
+ version_requirements: *2153482960
81
+ - !ruby/object:Gem::Dependency
82
+ name: listen
83
+ requirement: &2153481820 !ruby/object:Gem::Requirement
84
+ none: false
85
+ requirements:
86
+ - - =
87
+ - !ruby/object:Gem::Version
88
+ version: 0.4.7
89
+ type: :development
90
+ prerelease: false
91
+ version_requirements: *2153481820
92
+ - !ruby/object:Gem::Dependency
93
+ name: guard
94
+ requirement: &2153480840 !ruby/object:Gem::Requirement
95
+ none: false
96
+ requirements:
97
+ - - =
98
+ - !ruby/object:Gem::Version
99
+ version: 1.2.3
100
+ type: :development
101
+ prerelease: false
102
+ version_requirements: *2153480840
103
+ - !ruby/object:Gem::Dependency
104
+ name: guard-rspec
105
+ requirement: &2153479660 !ruby/object:Gem::Requirement
106
+ none: false
107
+ requirements:
108
+ - - =
109
+ - !ruby/object:Gem::Version
110
+ version: 1.2.1
111
+ type: :development
112
+ prerelease: false
113
+ version_requirements: *2153479660
114
+ - !ruby/object:Gem::Dependency
115
+ name: growl
116
+ requirement: &2153478840 !ruby/object:Gem::Requirement
117
+ none: false
118
+ requirements:
119
+ - - =
120
+ - !ruby/object:Gem::Version
121
+ version: 1.0.3
122
+ type: :development
123
+ prerelease: false
124
+ version_requirements: *2153478840
125
+ description: Quickly build and manage Umbraco projects
126
+ email:
127
+ - taylor.smith@imulus.com
128
+ - casey.ohara@imulus.com
129
+ executables:
130
+ - allen
131
+ extensions: []
132
+ extra_rdoc_files: []
133
+ files:
134
+ - .gitignore
135
+ - .travis.yml
136
+ - Gemfile
137
+ - Gemfile.lock
138
+ - Guardfile
139
+ - LICENSE
140
+ - README.md
141
+ - Rakefile
142
+ - allen.gemspec
143
+ - bin/allen
144
+ - lib/allen.rb
145
+ - lib/allen/cli.rb
146
+ - lib/allen/dsl.rb
147
+ - lib/allen/project.rb
148
+ - lib/allen/rake.rb
149
+ - lib/allen/settings.rb
150
+ - lib/allen/task_definer.rb
151
+ - lib/allen/version.rb
152
+ - spec/lib/allen/dsl_spec.rb
153
+ - spec/lib/allen/project_spec.rb
154
+ - spec/lib/allen/rake_spec.rb
155
+ - spec/lib/allen/settings_spec.rb
156
+ - spec/spec_helper.rb
157
+ - templates/.gitignore
158
+ - templates/Gemfile
159
+ - templates/README.md.tt
160
+ - templates/Rakefile.tt
161
+ - templates/src/%name%.Umbraco.Extensions/%name%.Umbraco.Extensions.csproj.tt
162
+ - templates/src/%name%.Umbraco.Extensions/Properties/AssemblyInfo.cs.tt
163
+ - templates/src/%name%.Umbraco/%name%.Umbraco.csproj.tt
164
+ - templates/src/%name%.Umbraco/Properties/AssemblyInfo.cs.tt
165
+ - templates/src/%name%.Umbraco/Web.Debug.config
166
+ - templates/src/%name%.Umbraco/Web.Release.config
167
+ - templates/src/%name%.Umbraco/Web.config
168
+ - templates/src/%name%.sln.tt
169
+ homepage: http://github.com/imulus/allen
170
+ licenses: []
171
+ post_install_message:
172
+ rdoc_options: []
173
+ require_paths:
174
+ - lib
175
+ required_ruby_version: !ruby/object:Gem::Requirement
176
+ none: false
177
+ requirements:
178
+ - - ! '>='
179
+ - !ruby/object:Gem::Version
180
+ version: '0'
181
+ required_rubygems_version: !ruby/object:Gem::Requirement
182
+ none: false
183
+ requirements:
184
+ - - ! '>='
185
+ - !ruby/object:Gem::Version
186
+ version: '0'
187
+ requirements: []
188
+ rubyforge_project:
189
+ rubygems_version: 1.8.17
190
+ signing_key:
191
+ specification_version: 3
192
+ summary: CLI and Rake tools for quickly building and managing Umbraco projects
193
+ test_files:
194
+ - spec/lib/allen/dsl_spec.rb
195
+ - spec/lib/allen/project_spec.rb
196
+ - spec/lib/allen/rake_spec.rb
197
+ - spec/lib/allen/settings_spec.rb
198
+ - spec/spec_helper.rb
199
+ has_rdoc: