rails-jquerymobile 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.
- data/.gitignore +4 -0
- data/lib/rails-jquerymobile/version.rb +3 -0
- data/rails-jquerymobile.gemspec +27 -0
- metadata +48 -0
data/.gitignore
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
3
|
+
require "rails-jquerymobile/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |s|
|
|
6
|
+
s.name = "rails-jquerymobile"
|
|
7
|
+
s.version = RailsJquerymobile::VERSION
|
|
8
|
+
s.platform = Gem::Platform::RUBY
|
|
9
|
+
s.authors = ["Chris"]
|
|
10
|
+
s.email = ["christian.oloff+gem@gmail.com"]
|
|
11
|
+
s.homepage = "http://rails-jquerymobile.org"
|
|
12
|
+
s.summary = "Use Jquerymobile in a Rails application."
|
|
13
|
+
s.description = "Nuf said."
|
|
14
|
+
s.rubyforge_project = "rails-jquerymobile"
|
|
15
|
+
|
|
16
|
+
s.files = `git ls-files`.split("\n")
|
|
17
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
18
|
+
# s.test_files.reject! { |fn| fn.include? ".swp" }
|
|
19
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
20
|
+
s.require_paths = ["lib"]
|
|
21
|
+
# s.add_development_dependency('rspec')
|
|
22
|
+
[ ].each do |d| # no dependencies right now ;)
|
|
23
|
+
s.add_development_dependency d
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
end
|
|
27
|
+
|
metadata
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: rails-jquerymobile
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Chris
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2011-12-20 00:00:00.000000000Z
|
|
13
|
+
dependencies: []
|
|
14
|
+
description: Nuf said.
|
|
15
|
+
email:
|
|
16
|
+
- christian.oloff+gem@gmail.com
|
|
17
|
+
executables: []
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- .gitignore
|
|
22
|
+
- lib/rails-jquerymobile/version.rb
|
|
23
|
+
- rails-jquerymobile.gemspec
|
|
24
|
+
homepage: http://rails-jquerymobile.org
|
|
25
|
+
licenses: []
|
|
26
|
+
post_install_message:
|
|
27
|
+
rdoc_options: []
|
|
28
|
+
require_paths:
|
|
29
|
+
- lib
|
|
30
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
31
|
+
none: false
|
|
32
|
+
requirements:
|
|
33
|
+
- - ! '>='
|
|
34
|
+
- !ruby/object:Gem::Version
|
|
35
|
+
version: '0'
|
|
36
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
37
|
+
none: false
|
|
38
|
+
requirements:
|
|
39
|
+
- - ! '>='
|
|
40
|
+
- !ruby/object:Gem::Version
|
|
41
|
+
version: '0'
|
|
42
|
+
requirements: []
|
|
43
|
+
rubyforge_project: rails-jquerymobile
|
|
44
|
+
rubygems_version: 1.8.6
|
|
45
|
+
signing_key:
|
|
46
|
+
specification_version: 3
|
|
47
|
+
summary: Use Jquerymobile in a Rails application.
|
|
48
|
+
test_files: []
|