cotton 0.1.0-java
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/Doubleshot +40 -0
- data/MIT-LICENSE +20 -0
- data/README.md +4 -0
- data/ext/java/Cotton.java +5 -0
- data/lib/cotton.rb +2 -0
- data/target/cotton.jar +0 -0
- data/test/helper.rb +0 -0
- metadata +96 -0
data/Doubleshot
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
Doubleshot.new do |config|
|
4
|
+
|
5
|
+
config.project = "cotton"
|
6
|
+
config.group = "org.sam.cotton"
|
7
|
+
config.version = "0.1.0"
|
8
|
+
|
9
|
+
if ENV["TRAVIS"]
|
10
|
+
config.mvn_repository "http://maven.mirrors.travis-ci.org/nexus/content/groups/public/"
|
11
|
+
config.mvn_repository "http://maven.mirrors.travis-ci.org/nexus/content/repositories/apache/"
|
12
|
+
config.mvn_repository "http://maven.mirrors.travis-ci.org/nexus/content/repositories/sonatype/"
|
13
|
+
config.mvn_repository "http://maven.mirrors.travis-ci.org/nexus/content/repositories/codehaus-snapshots/"
|
14
|
+
config.mvn_repository "http://maven.mirrors.travis-ci.org/nexus/content/shadows/central-m1/"
|
15
|
+
config.mvn_repository "http://maven.mirrors.travis-ci.org/nexus/content/repositories/central/"
|
16
|
+
else
|
17
|
+
config.mvn_repository "https://nexus.codehaus.org/content/groups/public/"
|
18
|
+
config.mvn_repository "https://oss.sonatype.org/content/groups/public/"
|
19
|
+
config.mvn_repository "http://mirrors.ibiblio.org/pub/mirrors/maven2"
|
20
|
+
config.mvn_repository "http://repo1.maven.org/maven2"
|
21
|
+
end
|
22
|
+
|
23
|
+
config.gemspec do |spec|
|
24
|
+
spec.summary = "Cotton is a JRuby Web Application Framework"
|
25
|
+
spec.description = <<-DESCRIPTION
|
26
|
+
Cotton is a JRuby exclusive Web Application Framework.
|
27
|
+
|
28
|
+
It takes the best of Ruby frameworks, like REST style routing, asset packaging
|
29
|
+
and mountable apps, and adds a few tricks of it's own like first-class Forms,
|
30
|
+
clustered caches and Sessions, and performance++.
|
31
|
+
|
32
|
+
We aim to ensure Cotton is the fastest platform for Ruby on the Web, period.
|
33
|
+
DESCRIPTION
|
34
|
+
spec.homepage = "https://github.com/sam/cotton"
|
35
|
+
spec.author = "Sam Smoot"
|
36
|
+
spec.email = "ssmoot@gmail.com"
|
37
|
+
spec.license = "MIT-LICENSE"
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2012 Sam Smoot
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
data/lib/cotton.rb
ADDED
data/target/cotton.jar
ADDED
Binary file
|
data/test/helper.rb
ADDED
File without changes
|
metadata
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cotton
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 0.1.0
|
6
|
+
platform: java
|
7
|
+
authors:
|
8
|
+
- Sam Smoot
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-11-01 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: doubleshot
|
16
|
+
version_requirements: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - ! '>='
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: !binary |-
|
21
|
+
MA==
|
22
|
+
none: false
|
23
|
+
requirement: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ! '>='
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: !binary |-
|
28
|
+
MA==
|
29
|
+
none: false
|
30
|
+
prerelease: false
|
31
|
+
type: :development
|
32
|
+
description: ! 'Cotton is a JRuby exclusive Web Application Framework.
|
33
|
+
|
34
|
+
|
35
|
+
It takes the best of Ruby frameworks, like REST style routing, asset packaging
|
36
|
+
|
37
|
+
and mountable apps, and adds a few tricks of it''s own like first-class Forms,
|
38
|
+
|
39
|
+
clustered caches and Sessions, and performance++.
|
40
|
+
|
41
|
+
|
42
|
+
We aim to ensure Cotton is the fastest platform for Ruby on the Web, period.
|
43
|
+
|
44
|
+
'
|
45
|
+
email: ssmoot@gmail.com
|
46
|
+
executables: []
|
47
|
+
extensions: []
|
48
|
+
extra_rdoc_files: []
|
49
|
+
files:
|
50
|
+
- test/helper.rb
|
51
|
+
- !binary |-
|
52
|
+
RG91Ymxlc2hvdA==
|
53
|
+
- !binary |-
|
54
|
+
TUlULUxJQ0VOU0U=
|
55
|
+
- !binary |-
|
56
|
+
UkVBRE1FLm1k
|
57
|
+
- lib/cotton.rb
|
58
|
+
- ext/java/Cotton.java
|
59
|
+
- target/cotton.jar
|
60
|
+
homepage: https://github.com/sam/cotton
|
61
|
+
licenses:
|
62
|
+
- MIT-LICENSE
|
63
|
+
post_install_message:
|
64
|
+
rdoc_options:
|
65
|
+
- --line-numbers
|
66
|
+
- --main
|
67
|
+
- README.textile
|
68
|
+
- --title
|
69
|
+
- cotton Documentation
|
70
|
+
- lib
|
71
|
+
- README.textile
|
72
|
+
require_paths:
|
73
|
+
- lib
|
74
|
+
- target
|
75
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
76
|
+
requirements:
|
77
|
+
- - ! '>='
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: !binary |-
|
80
|
+
MA==
|
81
|
+
none: false
|
82
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
83
|
+
requirements:
|
84
|
+
- - ! '>='
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: !binary |-
|
87
|
+
MA==
|
88
|
+
none: false
|
89
|
+
requirements: []
|
90
|
+
rubyforge_project:
|
91
|
+
rubygems_version: 1.8.24
|
92
|
+
signing_key:
|
93
|
+
specification_version: 3
|
94
|
+
summary: Cotton is a JRuby Web Application Framework
|
95
|
+
test_files:
|
96
|
+
- test/helper.rb
|