Skip to content

Commit a21f2d2

Browse files
committed
Namespaces every component properly.
1 parent d3f8c48 commit a21f2d2

File tree

621 files changed

+284
-107
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

621 files changed

+284
-107
lines changed

Gemfile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
source "http://rubygems.org"
2+
3+
# Declare your gem's dependencies in alchemy.gemspec.
4+
# Bundler will treat runtime dependencies like base dependencies, and
5+
# development dependencies will be added by default to the :development group.
6+
gemspec
7+
8+
gem 'compass', '>= 0.11.5', '< 0.12'
9+
10+
# Declare any dependencies that are still in development here instead of in
11+
# your gemspec. These might include edge Rails or gems from your path or
12+
# Git. Remember to move these dependencies to your gemspec before releasing
13+
# your gem to rubygems.org.
14+
15+
# To use debugger
16+
# gem 'debugger'

Gemfile.lock

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
PATH
2+
remote: .
3+
specs:
4+
alchemy (1.0.0)
5+
rails
6+
7+
GEM
8+
remote: http://rubygems.org/
9+
specs:
10+
actionmailer (3.2.9)
11+
actionpack (= 3.2.9)
12+
mail (~> 2.4.4)
13+
actionpack (3.2.9)
14+
activemodel (= 3.2.9)
15+
activesupport (= 3.2.9)
16+
builder (~> 3.0.0)
17+
erubis (~> 2.7.0)
18+
journey (~> 1.0.4)
19+
rack (~> 1.4.0)
20+
rack-cache (~> 1.2)
21+
rack-test (~> 0.6.1)
22+
sprockets (~> 2.2.1)
23+
activemodel (3.2.9)
24+
activesupport (= 3.2.9)
25+
builder (~> 3.0.0)
26+
activerecord (3.2.9)
27+
activemodel (= 3.2.9)
28+
activesupport (= 3.2.9)
29+
arel (~> 3.0.2)
30+
tzinfo (~> 0.3.29)
31+
activeresource (3.2.9)
32+
activemodel (= 3.2.9)
33+
activesupport (= 3.2.9)
34+
activesupport (3.2.9)
35+
i18n (~> 0.6)
36+
multi_json (~> 1.0)
37+
arel (3.0.2)
38+
builder (3.0.4)
39+
chunky_png (1.2.6)
40+
compass (0.11.7)
41+
chunky_png (~> 1.2)
42+
fssm (>= 0.2.7)
43+
sass (~> 3.1)
44+
erubis (2.7.0)
45+
fssm (0.2.9)
46+
hike (1.2.1)
47+
i18n (0.6.1)
48+
journey (1.0.4)
49+
json (1.7.5)
50+
mail (2.4.4)
51+
i18n (>= 0.4.0)
52+
mime-types (~> 1.16)
53+
treetop (~> 1.4.8)
54+
mime-types (1.19)
55+
multi_json (1.3.7)
56+
polyglot (0.3.3)
57+
rack (1.4.1)
58+
rack-cache (1.2)
59+
rack (>= 0.4)
60+
rack-ssl (1.3.2)
61+
rack
62+
rack-test (0.6.2)
63+
rack (>= 1.0)
64+
rails (3.2.9)
65+
actionmailer (= 3.2.9)
66+
actionpack (= 3.2.9)
67+
activerecord (= 3.2.9)
68+
activeresource (= 3.2.9)
69+
activesupport (= 3.2.9)
70+
bundler (~> 1.0)
71+
railties (= 3.2.9)
72+
railties (3.2.9)
73+
actionpack (= 3.2.9)
74+
activesupport (= 3.2.9)
75+
rack-ssl (~> 1.3.2)
76+
rake (>= 0.8.7)
77+
rdoc (~> 3.4)
78+
thor (>= 0.14.6, < 2.0)
79+
rake (10.0.2)
80+
rdoc (3.12)
81+
json (~> 1.4)
82+
sass (3.2.3)
83+
sprockets (2.2.1)
84+
hike (~> 1.2)
85+
multi_json (~> 1.0)
86+
rack (~> 1.0)
87+
tilt (~> 1.1, != 1.3.0)
88+
thor (0.16.0)
89+
tilt (1.3.3)
90+
treetop (1.4.12)
91+
polyglot
92+
polyglot (>= 0.3.1)
93+
tzinfo (0.3.35)
94+
95+
PLATFORMS
96+
ruby
97+
98+
DEPENDENCIES
99+
alchemy!
100+
compass (>= 0.11.5, < 0.12)

Rakefile

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/usr/bin/env rake
2+
begin
3+
require 'bundler/setup'
4+
rescue LoadError
5+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
6+
end
7+
8+
9+
Bundler::GemHelper.install_tasks
10+
11+
require 'rake/testtask'
12+
13+
Rake::TestTask.new(:test) do |t|
14+
t.libs << 'lib'
15+
t.libs << 'test'
16+
t.pattern = 'test/**/*_test.rb'
17+
t.verbose = false
18+
end
19+
20+
21+
task :default => :test

alchemy.gemspec

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
$:.push File.expand_path("../lib", __FILE__)
2+
3+
# Maintain your gem's version:
4+
require "alchemy/version"
5+
6+
# Describe your gem and declare its dependencies:
7+
Gem::Specification.new do |s|
8+
s.name = "alchemy"
9+
s.version = Alchemy::VERSION
10+
s.authors = [""]
11+
s.email = [""]
12+
s.homepage = ""
13+
s.summary = "TODO: Summary of Alchemy."
14+
s.description = "TODO: Description of Alchemy."
15+
16+
s.files = Dir["{app,vendor,lib}/**/*"] + ["LICENSE", "Rakefile", "README.rst"]
17+
s.test_files = Dir["test/**/*"]
18+
19+
s.add_dependency "rails"
20+
end
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

app/assets/fonts/LiberationSans-BoldItalic-webfont.eot renamed to app/assets/fonts/alchemy/LiberationSans-BoldItalic-webfont.eot

File renamed without changes.

app/assets/fonts/LiberationSans-BoldItalic-webfont.svg renamed to app/assets/fonts/alchemy/LiberationSans-BoldItalic-webfont.svg

File renamed without changes.

0 commit comments

Comments
 (0)