Skip to content

Commit b0b82b5

Browse files
committed
feat(c90): C90特設ページ作成
1 parent 333659d commit b0b82b5

File tree

251 files changed

+53931
-0
lines changed

Some content is hidden

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

251 files changed

+53931
-0
lines changed

c90/.bowerrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory": "external/"
3+
}

c90/bower.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "o2project-c90",
3+
"description": "C90向け特設サイト",
4+
"main": "scripts/index.js",
5+
"authors": [
6+
"kubosho <[email protected]>"
7+
],
8+
"license": "MIT",
9+
"keywords": [
10+
"comiket"
11+
],
12+
"homepage": "https://github.com/o2project/c",
13+
"moduleType": [],
14+
"private": true,
15+
"ignore": [
16+
"**/.*",
17+
"node_modules",
18+
"bower_components",
19+
"test",
20+
"tests"
21+
],
22+
"dependencies": {
23+
"bootstrap": "4.0.0-alpha.2"
24+
}
25+
}

c90/external/bootstrap/.bower.json

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"name": "bootstrap",
3+
"description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
4+
"keywords": [
5+
"css",
6+
"js",
7+
"sass",
8+
"mobile-first",
9+
"responsive",
10+
"front-end",
11+
"framework",
12+
"web"
13+
],
14+
"homepage": "http://getbootstrap.com",
15+
"license": "MIT",
16+
"moduleType": "globals",
17+
"main": [
18+
"scss/bootstrap.scss",
19+
"dist/js/bootstrap.js"
20+
],
21+
"ignore": [
22+
"/.*",
23+
"_config.yml",
24+
"CNAME",
25+
"composer.json",
26+
"CONTRIBUTING.md",
27+
"docs",
28+
"js/tests",
29+
"test-infra"
30+
],
31+
"dependencies": {
32+
"jquery": "1.9.1 - 2"
33+
},
34+
"version": "4.0.0-alpha.2",
35+
"_release": "4.0.0-alpha.2",
36+
"_resolution": {
37+
"type": "version",
38+
"tag": "v4.0.0-alpha.2",
39+
"commit": "48938155eb24b4ccdde09426066869504c6dab3c"
40+
},
41+
"_source": "git://github.com/twbs/bootstrap.git",
42+
"_target": "4.0.0-alpha.2",
43+
"_originalSource": "bootstrap",
44+
"_direct": true
45+
}

c90/external/bootstrap/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Bootstrap uses [GitHub's Releases feature](https://github.com/blog/1547-release-your-software) for its changelogs.
2+
3+
See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap.
4+
5+
Release announcement posts on [the official Bootstrap blog](http://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release.

c90/external/bootstrap/Gemfile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Ruby Gems for building and testing Bootstrap
2+
# Run `grunt update-gemfile-lock` to update to the latest compatible versions
3+
4+
source 'https://rubygems.org'
5+
6+
group :development, :test do
7+
gem 'jekyll', '~> 3.0.1'
8+
gem 'jekyll-redirect-from', '~> 0.9.0'
9+
gem 'jekyll-sitemap', '~> 0.9.0'
10+
gem 'sass', '~> 3.4.19'
11+
gem 'scss_lint', '~> 0.43'
12+
end

c90/external/bootstrap/Gemfile.lock

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
colorator (0.1)
5+
ffi (1.9.10)
6+
ffi (1.9.10-x64-mingw32)
7+
jekyll (3.0.1)
8+
colorator (~> 0.1)
9+
jekyll-sass-converter (~> 1.0)
10+
jekyll-watch (~> 1.1)
11+
kramdown (~> 1.3)
12+
liquid (~> 3.0)
13+
mercenary (~> 0.3.3)
14+
rouge (~> 1.7)
15+
safe_yaml (~> 1.0)
16+
jekyll-redirect-from (0.9.0)
17+
jekyll (>= 2.0)
18+
jekyll-sass-converter (1.3.0)
19+
sass (~> 3.2)
20+
jekyll-sitemap (0.9.0)
21+
jekyll-watch (1.3.0)
22+
listen (~> 3.0)
23+
kramdown (1.9.0)
24+
liquid (3.0.6)
25+
listen (3.0.5)
26+
rb-fsevent (>= 0.9.3)
27+
rb-inotify (>= 0.9)
28+
mercenary (0.3.5)
29+
rainbow (2.0.0)
30+
rb-fsevent (0.9.6)
31+
rb-inotify (0.9.5)
32+
ffi (>= 0.5.0)
33+
rouge (1.10.1)
34+
safe_yaml (1.0.4)
35+
sass (3.4.19)
36+
scss_lint (0.43.2)
37+
rainbow (~> 2.0)
38+
sass (~> 3.4.15)
39+
40+
PLATFORMS
41+
ruby
42+
x64-mingw32
43+
44+
DEPENDENCIES
45+
jekyll (~> 3.0.1)
46+
jekyll-redirect-from (~> 0.9.0)
47+
jekyll-sitemap (~> 0.9.0)
48+
sass (~> 3.4.19)
49+
scss_lint (~> 0.43)
50+
51+
BUNDLED WITH
52+
1.10.6

0 commit comments

Comments
 (0)