gitpartyguest 0.0.1 → 0.0.2
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/.gitignore +17 -16
- data/Gemfile +2 -39
- data/{gitpartyguest/LICENSE → LICENSE} +0 -0
- data/README.md +28 -3
- data/Rakefile +1 -6
- data/{gitpartyguest/gitpartyguest.gemspec → gitpartyguest.gemspec} +3 -4
- data/{gitpartyguest/lib → lib}/gitpartyguest/version.rb +1 -1
- data/{gitpartyguest/lib → lib}/gitpartyguest.rb +1 -0
- metadata +8 -102
- data/.idea/.generators +0 -8
- data/.idea/.name +0 -1
- data/.idea/.rakeTasks +0 -7
- data/.idea/encodings.xml +0 -5
- data/.idea/misc.xml +0 -8
- data/.idea/modules.xml +0 -9
- data/.idea/scopes/scope_settings.xml +0 -5
- data/.idea/sf_frontend_site.iml +0 -66
- data/.idea/vcs.xml +0 -7
- data/.idea/workspace.xml +0 -890
- data/Gemfile.lock +0 -134
- data/README.rdoc +0 -261
- data/app/assets/images/rails.png +0 -0
- data/app/assets/javascripts/application.js +0 -15
- data/app/assets/stylesheets/application.css +0 -13
- data/app/controllers/application_controller.rb +0 -3
- data/app/controllers/update_controller.rb +0 -24
- data/app/helpers/application_helper.rb +0 -2
- data/app/mailers/.gitkeep +0 -0
- data/app/models/.gitkeep +0 -0
- data/app/models/git_party_guest.rb +0 -41
- data/app/views/layouts/application.html.erb +0 -14
- data/app/views/update/index.html.erb +0 -2
- data/app/views/update/show.html.erb +0 -2
- data/config/application.rb +0 -62
- data/config/boot.rb +0 -6
- data/config/database.yml +0 -25
- data/config/environment.rb +0 -5
- data/config/environments/development.rb +0 -37
- data/config/environments/production.rb +0 -67
- data/config/environments/test.rb +0 -37
- data/config/initializers/backtrace_silencers.rb +0 -7
- data/config/initializers/inflections.rb +0 -15
- data/config/initializers/mime_types.rb +0 -5
- data/config/initializers/repo_init.rb +0 -11
- data/config/initializers/secret_token.rb +0 -7
- data/config/initializers/session_store.rb +0 -8
- data/config/initializers/wrap_parameters.rb +0 -14
- data/config/locales/en.yml +0 -5
- data/config/routes.rb +0 -61
- data/config.ru +0 -4
- data/db/seeds.rb +0 -7
- data/doc/README_FOR_APP +0 -2
- data/gitpartyguest/.gitignore +0 -17
- data/gitpartyguest/Gemfile +0 -6
- data/gitpartyguest/README.md +0 -29
- data/gitpartyguest/Rakefile +0 -2
- data/gitpartyguest/config/initalizers/repo_init.rb +0 -11
- data/gitpartyguest/config/routes.rb +0 -3
- data/lib/assets/.gitkeep +0 -0
- data/lib/tasks/.gitkeep +0 -0
- data/log/.gitkeep +0 -0
- data/public/2012/07/11/1342023312-blah/index.html +0 -61
- data/public/2012/07/11/1342023388-post2/index.html +0 -61
- data/public/2012/07/11/1342023521-title_goes_here/index.html +0 -61
- data/public/2012/07/11/1342031212-title_goes_here/index.html +0 -61
- data/public/2012/07/11/1342031484-ok_now/index.html +0 -61
- data/public/401.html +0 -26
- data/public/404.html +0 -26
- data/public/422.html +0 -26
- data/public/500.html +0 -25
- data/public/Posts/index.html +0 -150
- data/public/Preview/index.html +0 -158
- data/public/README.md +0 -4
- data/public/css/preview_style.css +0 -52
- data/public/css/style.css +0 -23
- data/public/favicon.ico +0 -0
- data/public/home/index.html +0 -34
- data/public/index.html +0 -28
- data/public/media/SFbloghdrAS.png +0 -0
- data/public/media/banner.jpg +0 -0
- data/public/media/bikes.jpg +0 -0
- data/public/media/bridge.jpg +0 -0
- data/public/media/wing.jpg +0 -0
- data/public/robots.txt +0 -5
- data/script/rails +0 -6
- data/test/fixtures/.gitkeep +0 -0
- data/test/functional/.gitkeep +0 -0
- data/test/integration/.gitkeep +0 -0
- data/test/performance/browsing_test.rb +0 -12
- data/test/test_helper.rb +0 -13
- data/test/unit/.gitkeep +0 -0
- data/vendor/assets/javascripts/.gitkeep +0 -0
- data/vendor/assets/stylesheets/.gitkeep +0 -0
- data/vendor/plugins/.gitkeep +0 -0
data/.gitignore
CHANGED
@@ -1,16 +1,17 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
/
|
12
|
-
|
13
|
-
|
14
|
-
/
|
15
|
-
/tmp
|
16
|
-
/
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
.bundle
|
4
|
+
.config
|
5
|
+
.yardoc
|
6
|
+
Gemfile.lock
|
7
|
+
InstalledFiles
|
8
|
+
_yardoc
|
9
|
+
coverage
|
10
|
+
doc/
|
11
|
+
lib/bundler/man
|
12
|
+
pkg
|
13
|
+
rdoc
|
14
|
+
spec/reports
|
15
|
+
test/tmp
|
16
|
+
test/version_tmp
|
17
|
+
tmp
|
data/Gemfile
CHANGED
@@ -1,41 +1,4 @@
|
|
1
1
|
source 'https://rubygems.org'
|
2
2
|
|
3
|
-
gem
|
4
|
-
|
5
|
-
gem 'git', '1.2.5'
|
6
|
-
|
7
|
-
# Bundle edge Rails instead:
|
8
|
-
# gem 'rails', :git => 'git://github.com/rails/rails.git'
|
9
|
-
|
10
|
-
gem 'sqlite3'
|
11
|
-
|
12
|
-
gem 'json'
|
13
|
-
|
14
|
-
# Gems used only for assets and not required
|
15
|
-
# in production environments by default.
|
16
|
-
group :assets do
|
17
|
-
gem 'sass-rails', '~> 3.2.3'
|
18
|
-
gem 'coffee-rails', '~> 3.2.1'
|
19
|
-
|
20
|
-
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
21
|
-
# gem 'therubyracer', :platform => :ruby
|
22
|
-
|
23
|
-
gem 'uglifier', '>= 1.0.3'
|
24
|
-
end
|
25
|
-
|
26
|
-
gem 'jquery-rails'
|
27
|
-
|
28
|
-
# To use ActiveModel has_secure_password
|
29
|
-
# gem 'bcrypt-ruby', '~> 3.0.0'
|
30
|
-
|
31
|
-
# To use Jbuilder templates for JSON
|
32
|
-
# gem 'jbuilder'
|
33
|
-
|
34
|
-
# Use unicorn as the app server
|
35
|
-
# gem 'unicorn'
|
36
|
-
|
37
|
-
# Deploy with Capistrano
|
38
|
-
# gem 'capistrano'
|
39
|
-
|
40
|
-
# To use debugger
|
41
|
-
# gem 'ruby-debug'
|
3
|
+
# Specify your gem's dependencies in gitpartyguest.gemspec
|
4
|
+
gemspec
|
File without changes
|
data/README.md
CHANGED
@@ -1,4 +1,29 @@
|
|
1
|
-
|
2
|
-
==============
|
1
|
+
# Gitpartyguest
|
3
2
|
|
4
|
-
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'gitpartyguest'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install gitpartyguest
|
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 'Added some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
CHANGED
@@ -1,7 +1,2 @@
|
|
1
1
|
#!/usr/bin/env rake
|
2
|
-
|
3
|
-
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
4
|
-
|
5
|
-
require File.expand_path('../config/application', __FILE__)
|
6
|
-
|
7
|
-
SfFrontendSite::Application.load_tasks
|
2
|
+
require "bundler/gem_tasks"
|
@@ -4,15 +4,14 @@ require File.expand_path('../lib/gitpartyguest/version', __FILE__)
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
5
|
gem.authors = ["Sf-ApiUser"]
|
6
6
|
gem.email = ["Sf-ApiUser@sourcefire.com"]
|
7
|
-
gem.description = %q{
|
8
|
-
gem.summary = %q{
|
7
|
+
gem.description = %q{A test gem}
|
8
|
+
gem.summary = %q{gonna start out small to make a gem}
|
9
9
|
gem.homepage = ""
|
10
10
|
|
11
|
-
|
12
11
|
gem.files = `git ls-files`.split($\)
|
13
12
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
14
13
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
15
14
|
gem.name = "gitpartyguest"
|
16
|
-
gem.require_paths = ["lib"
|
15
|
+
gem.require_paths = ["lib"]
|
17
16
|
gem.version = Gitpartyguest::VERSION
|
18
17
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitpartyguest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -11,7 +11,7 @@ bindir: bin
|
|
11
11
|
cert_chain: []
|
12
12
|
date: 2012-07-18 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
|
-
description:
|
14
|
+
description: A test gem
|
15
15
|
email:
|
16
16
|
- Sf-ApiUser@sourcefire.com
|
17
17
|
executables: []
|
@@ -19,106 +19,19 @@ extensions: []
|
|
19
19
|
extra_rdoc_files: []
|
20
20
|
files:
|
21
21
|
- .gitignore
|
22
|
-
- .idea/.generators
|
23
|
-
- .idea/.name
|
24
|
-
- .idea/.rakeTasks
|
25
|
-
- .idea/encodings.xml
|
26
|
-
- .idea/misc.xml
|
27
|
-
- .idea/modules.xml
|
28
|
-
- .idea/scopes/scope_settings.xml
|
29
|
-
- .idea/sf_frontend_site.iml
|
30
|
-
- .idea/vcs.xml
|
31
|
-
- .idea/workspace.xml
|
32
22
|
- Gemfile
|
33
|
-
-
|
23
|
+
- LICENSE
|
34
24
|
- README.md
|
35
|
-
- README.rdoc
|
36
25
|
- Rakefile
|
37
|
-
-
|
38
|
-
-
|
39
|
-
-
|
40
|
-
- app/controllers/application_controller.rb
|
41
|
-
- app/controllers/update_controller.rb
|
42
|
-
- app/helpers/application_helper.rb
|
43
|
-
- app/mailers/.gitkeep
|
44
|
-
- app/models/.gitkeep
|
45
|
-
- app/models/git_party_guest.rb
|
46
|
-
- app/views/layouts/application.html.erb
|
47
|
-
- app/views/update/index.html.erb
|
48
|
-
- app/views/update/show.html.erb
|
49
|
-
- config.ru
|
50
|
-
- config/application.rb
|
51
|
-
- config/boot.rb
|
52
|
-
- config/database.yml
|
53
|
-
- config/environment.rb
|
54
|
-
- config/environments/development.rb
|
55
|
-
- config/environments/production.rb
|
56
|
-
- config/environments/test.rb
|
57
|
-
- config/initializers/backtrace_silencers.rb
|
58
|
-
- config/initializers/inflections.rb
|
59
|
-
- config/initializers/mime_types.rb
|
60
|
-
- config/initializers/repo_init.rb
|
61
|
-
- config/initializers/secret_token.rb
|
62
|
-
- config/initializers/session_store.rb
|
63
|
-
- config/initializers/wrap_parameters.rb
|
64
|
-
- config/locales/en.yml
|
65
|
-
- config/routes.rb
|
66
|
-
- db/seeds.rb
|
67
|
-
- doc/README_FOR_APP
|
68
|
-
- gitpartyguest-0.0.1.gem
|
69
|
-
- gitpartyguest/.gitignore
|
70
|
-
- gitpartyguest/Gemfile
|
71
|
-
- gitpartyguest/LICENSE
|
72
|
-
- gitpartyguest/README.md
|
73
|
-
- gitpartyguest/Rakefile
|
74
|
-
- gitpartyguest/config/initalizers/repo_init.rb
|
75
|
-
- gitpartyguest/config/routes.rb
|
76
|
-
- gitpartyguest/gitpartyguest.gemspec
|
77
|
-
- gitpartyguest/lib/gitpartyguest.rb
|
78
|
-
- gitpartyguest/lib/gitpartyguest/version.rb
|
79
|
-
- lib/assets/.gitkeep
|
80
|
-
- lib/tasks/.gitkeep
|
81
|
-
- log/.gitkeep
|
82
|
-
- public/2012/07/11/1342023312-blah/index.html
|
83
|
-
- public/2012/07/11/1342023388-post2/index.html
|
84
|
-
- public/2012/07/11/1342023521-title_goes_here/index.html
|
85
|
-
- public/2012/07/11/1342031212-title_goes_here/index.html
|
86
|
-
- public/2012/07/11/1342031484-ok_now/index.html
|
87
|
-
- public/401.html
|
88
|
-
- public/404.html
|
89
|
-
- public/422.html
|
90
|
-
- public/500.html
|
91
|
-
- public/Posts/index.html
|
92
|
-
- public/Preview/index.html
|
93
|
-
- public/README.md
|
94
|
-
- public/css/preview_style.css
|
95
|
-
- public/css/style.css
|
96
|
-
- public/favicon.ico
|
97
|
-
- public/home/index.html
|
98
|
-
- public/index.html
|
99
|
-
- public/media/SFbloghdrAS.png
|
100
|
-
- public/media/banner.jpg
|
101
|
-
- public/media/bikes.jpg
|
102
|
-
- public/media/bridge.jpg
|
103
|
-
- public/media/wing.jpg
|
104
|
-
- public/robots.txt
|
105
|
-
- script/rails
|
106
|
-
- test/fixtures/.gitkeep
|
107
|
-
- test/functional/.gitkeep
|
108
|
-
- test/integration/.gitkeep
|
109
|
-
- test/performance/browsing_test.rb
|
110
|
-
- test/test_helper.rb
|
111
|
-
- test/unit/.gitkeep
|
112
|
-
- vendor/assets/javascripts/.gitkeep
|
113
|
-
- vendor/assets/stylesheets/.gitkeep
|
114
|
-
- vendor/plugins/.gitkeep
|
26
|
+
- gitpartyguest.gemspec
|
27
|
+
- lib/gitpartyguest.rb
|
28
|
+
- lib/gitpartyguest/version.rb
|
115
29
|
homepage: ''
|
116
30
|
licenses: []
|
117
31
|
post_install_message:
|
118
32
|
rdoc_options: []
|
119
33
|
require_paths:
|
120
34
|
- lib
|
121
|
-
- config
|
122
35
|
required_ruby_version: !ruby/object:Gem::Requirement
|
123
36
|
none: false
|
124
37
|
requirements:
|
@@ -136,12 +49,5 @@ rubyforge_project:
|
|
136
49
|
rubygems_version: 1.8.24
|
137
50
|
signing_key:
|
138
51
|
specification_version: 3
|
139
|
-
summary:
|
140
|
-
|
141
|
-
test_files:
|
142
|
-
- test/fixtures/.gitkeep
|
143
|
-
- test/functional/.gitkeep
|
144
|
-
- test/integration/.gitkeep
|
145
|
-
- test/performance/browsing_test.rb
|
146
|
-
- test/test_helper.rb
|
147
|
-
- test/unit/.gitkeep
|
52
|
+
summary: gonna start out small to make a gem
|
53
|
+
test_files: []
|
data/.idea/.generators
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<Settings><!--This file was automatically generated by Ruby plugin.
|
3
|
-
You are allowed to:
|
4
|
-
1. Reorder generators
|
5
|
-
2. Remove generators
|
6
|
-
3. Add installed generators
|
7
|
-
To add new installed generators automatically delete this file and reload the project.
|
8
|
-
--><GeneratorsGroup><Generator name="assets" /><Generator name="coffee:assets" /><Generator name="controller" /><Generator name="generator" /><Generator name="helper" /><Generator name="integration_test" /><Generator name="jquery:install" /><Generator name="js:assets" /><Generator name="mailer" /><Generator name="migration" /><Generator name="model" /><Generator name="observer" /><Generator name="performance_test" /><Generator name="resource" /><Generator name="scaffold" /><Generator name="scaffold_controller" /><Generator name="session_migration" /><Generator name="task" /></GeneratorsGroup></Settings>
|
data/.idea/.name
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
sf_frontend_site
|
data/.idea/.rakeTasks
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<Settings><!--This file was automatically generated by Ruby plugin.
|
3
|
-
You are allowed to:
|
4
|
-
1. Remove rake task
|
5
|
-
2. Add existing rake tasks
|
6
|
-
To add existing rake tasks automatically delete this file and reload the project.
|
7
|
-
--><RakeGroup description="" fullCmd="" taksId="rake" /></Settings>
|
data/.idea/encodings.xml
DELETED
data/.idea/misc.xml
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="ProjectResources">
|
4
|
-
<default-html-doctype>http://www.w3.org/1999/xhtml</default-html-doctype>
|
5
|
-
</component>
|
6
|
-
<component name="ProjectRootManager" version="2" project-jdk-name="ruby-1.8.7-p249" project-jdk-type="RUBY_SDK" />
|
7
|
-
</project>
|
8
|
-
|
data/.idea/modules.xml
DELETED
@@ -1,9 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="ProjectModuleManager">
|
4
|
-
<modules>
|
5
|
-
<module fileurl="file://$PROJECT_DIR$/.idea/sf_frontend_site.iml" filepath="$PROJECT_DIR$/.idea/sf_frontend_site.iml" />
|
6
|
-
</modules>
|
7
|
-
</component>
|
8
|
-
</project>
|
9
|
-
|
data/.idea/sf_frontend_site.iml
DELETED
@@ -1,66 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<module type="RUBY_MODULE" version="4">
|
3
|
-
<component name="FacetManager">
|
4
|
-
<facet type="RailsFacetType" name="Ruby on Rails">
|
5
|
-
<configuration>
|
6
|
-
<RAILS_FACET_CONFIG_ID NAME="RAILS_FACET_SUPPORT_REMOVED" VALUE="false" />
|
7
|
-
<RAILS_FACET_CONFIG_ID NAME="RAILS_TESTS_SOURCES_PATCHED" VALUE="true" />
|
8
|
-
<RAILS_FACET_CONFIG_ID NAME="RAILS_FACET_APPLICATION_ROOT" VALUE="$MODULE_DIR$" />
|
9
|
-
</configuration>
|
10
|
-
</facet>
|
11
|
-
</component>
|
12
|
-
<component name="NewModuleRootManager">
|
13
|
-
<content url="file://$MODULE_DIR$">
|
14
|
-
<sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
|
15
|
-
<sourceFolder url="file://$MODULE_DIR$/spec" isTestSource="true" />
|
16
|
-
<excludeFolder url="file://$MODULE_DIR$/tmp" />
|
17
|
-
</content>
|
18
|
-
<orderEntry type="inheritedJdk" />
|
19
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
20
|
-
<orderEntry type="library" scope="PROVIDED" name="actionmailer (v3.2.4.rc1, ruby-1.8.7-p249) [gem]" level="application" />
|
21
|
-
<orderEntry type="library" scope="PROVIDED" name="actionpack (v3.2.4.rc1, ruby-1.8.7-p249) [gem]" level="application" />
|
22
|
-
<orderEntry type="library" scope="PROVIDED" name="activemodel (v3.2.4.rc1, ruby-1.8.7-p249) [gem]" level="application" />
|
23
|
-
<orderEntry type="library" scope="PROVIDED" name="activerecord (v3.2.4.rc1, ruby-1.8.7-p249) [gem]" level="application" />
|
24
|
-
<orderEntry type="library" scope="PROVIDED" name="activeresource (v3.2.4.rc1, ruby-1.8.7-p249) [gem]" level="application" />
|
25
|
-
<orderEntry type="library" scope="PROVIDED" name="activesupport (v3.2.4.rc1, ruby-1.8.7-p249) [gem]" level="application" />
|
26
|
-
<orderEntry type="library" scope="PROVIDED" name="arel (v3.0.2, ruby-1.8.7-p249) [gem]" level="application" />
|
27
|
-
<orderEntry type="library" scope="PROVIDED" name="builder (v3.0.0, ruby-1.8.7-p249) [gem]" level="application" />
|
28
|
-
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.2.0.pre, ruby-1.8.7-p249) [gem]" level="application" />
|
29
|
-
<orderEntry type="library" scope="PROVIDED" name="coffee-rails (v3.2.2, ruby-1.8.7-p249) [gem]" level="application" />
|
30
|
-
<orderEntry type="library" scope="PROVIDED" name="coffee-script (v2.2.0, ruby-1.8.7-p249) [gem]" level="application" />
|
31
|
-
<orderEntry type="library" scope="PROVIDED" name="coffee-script-source (v1.3.3, ruby-1.8.7-p249) [gem]" level="application" />
|
32
|
-
<orderEntry type="library" scope="PROVIDED" name="erubis (v2.7.0, ruby-1.8.7-p249) [gem]" level="application" />
|
33
|
-
<orderEntry type="library" scope="PROVIDED" name="execjs (v1.4.0, ruby-1.8.7-p249) [gem]" level="application" />
|
34
|
-
<orderEntry type="library" scope="PROVIDED" name="hike (v1.2.1, ruby-1.8.7-p249) [gem]" level="application" />
|
35
|
-
<orderEntry type="library" scope="PROVIDED" name="i18n (v0.6.0, ruby-1.8.7-p249) [gem]" level="application" />
|
36
|
-
<orderEntry type="library" scope="PROVIDED" name="journey (v1.0.3, ruby-1.8.7-p249) [gem]" level="application" />
|
37
|
-
<orderEntry type="library" scope="PROVIDED" name="jquery-rails (v2.0.2, ruby-1.8.7-p249) [gem]" level="application" />
|
38
|
-
<orderEntry type="library" scope="PROVIDED" name="json (v1.7.3, ruby-1.8.7-p249) [gem]" level="application" />
|
39
|
-
<orderEntry type="library" scope="PROVIDED" name="mail (v2.4.4, ruby-1.8.7-p249) [gem]" level="application" />
|
40
|
-
<orderEntry type="library" scope="PROVIDED" name="mime-types (v1.18, ruby-1.8.7-p249) [gem]" level="application" />
|
41
|
-
<orderEntry type="library" scope="PROVIDED" name="multi_json (v1.3.6, ruby-1.8.7-p249) [gem]" level="application" />
|
42
|
-
<orderEntry type="library" scope="PROVIDED" name="polyglot (v0.3.3, ruby-1.8.7-p249) [gem]" level="application" />
|
43
|
-
<orderEntry type="library" scope="PROVIDED" name="rack (v1.4.1, ruby-1.8.7-p249) [gem]" level="application" />
|
44
|
-
<orderEntry type="library" scope="PROVIDED" name="rack-cache (v1.2, ruby-1.8.7-p249) [gem]" level="application" />
|
45
|
-
<orderEntry type="library" scope="PROVIDED" name="rack-ssl (v1.3.2, ruby-1.8.7-p249) [gem]" level="application" />
|
46
|
-
<orderEntry type="library" scope="PROVIDED" name="rack-test (v0.6.1, ruby-1.8.7-p249) [gem]" level="application" />
|
47
|
-
<orderEntry type="library" scope="PROVIDED" name="rails (v3.2.4.rc1, ruby-1.8.7-p249) [gem]" level="application" />
|
48
|
-
<orderEntry type="library" scope="PROVIDED" name="railties (v3.2.4.rc1, ruby-1.8.7-p249) [gem]" level="application" />
|
49
|
-
<orderEntry type="library" scope="PROVIDED" name="rake (v0.9.2.2, ruby-1.8.7-p249) [gem]" level="application" />
|
50
|
-
<orderEntry type="library" scope="PROVIDED" name="rdoc (v3.12, ruby-1.8.7-p249) [gem]" level="application" />
|
51
|
-
<orderEntry type="library" scope="PROVIDED" name="sass (v3.1.19, ruby-1.8.7-p249) [gem]" level="application" />
|
52
|
-
<orderEntry type="library" scope="PROVIDED" name="sass-rails (v3.2.5, ruby-1.8.7-p249) [gem]" level="application" />
|
53
|
-
<orderEntry type="library" scope="PROVIDED" name="sprockets (v2.1.3, ruby-1.8.7-p249) [gem]" level="application" />
|
54
|
-
<orderEntry type="library" scope="PROVIDED" name="sqlite3 (v1.3.6, ruby-1.8.7-p249) [gem]" level="application" />
|
55
|
-
<orderEntry type="library" scope="PROVIDED" name="thor (v0.15.2, ruby-1.8.7-p249) [gem]" level="application" />
|
56
|
-
<orderEntry type="library" scope="PROVIDED" name="tilt (v1.3.3, ruby-1.8.7-p249) [gem]" level="application" />
|
57
|
-
<orderEntry type="library" scope="PROVIDED" name="treetop (v1.4.10, ruby-1.8.7-p249) [gem]" level="application" />
|
58
|
-
<orderEntry type="library" scope="PROVIDED" name="tzinfo (v0.3.33, ruby-1.8.7-p249) [gem]" level="application" />
|
59
|
-
<orderEntry type="library" scope="PROVIDED" name="uglifier (v1.2.4, ruby-1.8.7-p249) [gem]" level="application" />
|
60
|
-
</component>
|
61
|
-
<component name="RModuleSettingsStorage">
|
62
|
-
<LOAD_PATH number="0" />
|
63
|
-
<I18N_FOLDERS number="1" string0="$MODULE_DIR$/config/locales" />
|
64
|
-
</component>
|
65
|
-
</module>
|
66
|
-
|