cappuccino-rails 0.0.1
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.
- checksums.yaml +7 -0
- data/README.markdown +35 -0
- data/lib/cappuccino-rails.rb +4 -0
- data/lib/cappuccino/rails.rb +7 -0
- data/lib/cappuccino/rails/engine.rb +6 -0
- data/lib/cappuccino/rails/version.rb +5 -0
- metadata +49 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 939578ce7c22291e3aca1edcca734239204c8ea5
|
|
4
|
+
data.tar.gz: 51a5980c95154469563d6289468d90e09e8baa60
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 9b180fe0c0aa96672ea0b034cf2d8ff5e4d02614b61001eebf366c2b8be2562955d6aa84868b7a2b154104ff8e63e79bbaa08b9fa67768beaa47cffc972de058
|
|
7
|
+
data.tar.gz: cf1c2447dca6fe8b0516d186373324987f42b991f1301f33234df413146aa621566291d4476cf1eac83b4cd5965c38ccc5dc5934d7ac6b057fbbb88e3ec46fca
|
data/README.markdown
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Capuccino-Rails
|
|
2
|
+
|
|
3
|
+
Provides integrating [Cappuccino Framework](http://http://www.cappuccino-project.org/) into Rails
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
First add the gem to your Gemfile:
|
|
8
|
+
```
|
|
9
|
+
gem 'cappuccino-rails'
|
|
10
|
+
```
|
|
11
|
+
and run `bundle install`
|
|
12
|
+
|
|
13
|
+
To include Cappuccino application add the folowing code to your `application.js`:
|
|
14
|
+
```
|
|
15
|
+
//= require cappuccino
|
|
16
|
+
//= require Frameworks/Objective-J/Objective-J
|
|
17
|
+
```
|
|
18
|
+
to `application.css`:
|
|
19
|
+
```
|
|
20
|
+
*= require cappuccino
|
|
21
|
+
```
|
|
22
|
+
and render the application container in your view:
|
|
23
|
+
```
|
|
24
|
+
<%= render 'cappuccino/container' %>
|
|
25
|
+
```
|
|
26
|
+
Then open the required path and enjoy the result.
|
|
27
|
+
To override the default files just add ones with the same names to your javascript folder
|
|
28
|
+
|
|
29
|
+
## Contributing
|
|
30
|
+
|
|
31
|
+
Of course the gem is not perfect yet. So feel free to open pull request if needed
|
|
32
|
+
|
|
33
|
+
## Credits
|
|
34
|
+
|
|
35
|
+
* [Nickolay Kondratenko](https://github.com/kont-noor)
|
metadata
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: cappuccino-rails
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Nickolay Kondratenko
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2014-10-05 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: Integrates Cappuccino framework into Rails
|
|
14
|
+
email:
|
|
15
|
+
- devmarkup@gmail.com
|
|
16
|
+
executables: []
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- README.markdown
|
|
21
|
+
- lib/cappuccino-rails.rb
|
|
22
|
+
- lib/cappuccino/rails.rb
|
|
23
|
+
- lib/cappuccino/rails/engine.rb
|
|
24
|
+
- lib/cappuccino/rails/version.rb
|
|
25
|
+
homepage: https://github.com/kont-noor/cappuccino-rails
|
|
26
|
+
licenses: []
|
|
27
|
+
metadata: {}
|
|
28
|
+
post_install_message:
|
|
29
|
+
rdoc_options: []
|
|
30
|
+
require_paths:
|
|
31
|
+
- lib
|
|
32
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
33
|
+
requirements:
|
|
34
|
+
- - ">="
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
version: '0'
|
|
37
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
38
|
+
requirements:
|
|
39
|
+
- - ">="
|
|
40
|
+
- !ruby/object:Gem::Version
|
|
41
|
+
version: '0'
|
|
42
|
+
requirements: []
|
|
43
|
+
rubyforge_project:
|
|
44
|
+
rubygems_version: 2.2.2
|
|
45
|
+
signing_key:
|
|
46
|
+
specification_version: 4
|
|
47
|
+
summary: Integrates Cappuccino framework into Rails
|
|
48
|
+
test_files: []
|
|
49
|
+
has_rdoc:
|