transponder 0.0.8 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/generators/transponder/install/install_generator.rb +2 -2
- data/lib/generators/transponder/install/templates/helpers/.keep +0 -0
- data/lib/generators/transponder/install/templates/presenters/.keep +0 -0
- data/lib/generators/transponder/install/templates/services/.keep +0 -0
- data/lib/transponder/version.rb +1 -1
- metadata +8 -8
- data/Gemfile +0 -9
- data/LICENSE.txt +0 -22
- data/Rakefile +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 502d156e67c02a38b7f9f375543c09211c21bdce
|
4
|
+
data.tar.gz: cf721962531a26d3da44cf4d6c7d28d40cdda5d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad47619502eb9fcebcc1334d036c481589cf1c0b1f2576223d62fef875220f6fad63d8440ac7129db122b798669b61decade8e94cce36c88f86ac485912ad39e
|
7
|
+
data.tar.gz: 135cfa523b5c86b7f10d5497a947fffe530accc3cc9636f86b7429f03f25367916d9c912db5f449ff8676499fb418fb9fa91f88f32749ab32d80a73937353f83
|
@@ -23,11 +23,11 @@ module Transponder
|
|
23
23
|
end
|
24
24
|
|
25
25
|
def add_setup
|
26
|
-
template 'initializers/setup.coffee',
|
26
|
+
template 'initializers/setup.coffee', 'app/assets/javascripts/initializers/setup.coffee'
|
27
27
|
end
|
28
28
|
|
29
29
|
def add_manifest
|
30
|
-
template 'initializers/manifest.coffee',
|
30
|
+
template 'initializers/manifest.coffee', 'app/assets/javascripts/initializers/manifest.coffee'
|
31
31
|
end
|
32
32
|
end
|
33
33
|
end
|
File without changes
|
File without changes
|
File without changes
|
data/lib/transponder/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: transponder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Zack Siri
|
@@ -31,24 +31,24 @@ executables: []
|
|
31
31
|
extensions: []
|
32
32
|
extra_rdoc_files: []
|
33
33
|
files:
|
34
|
+
- lib/assets/javascripts/transponder.coffee
|
34
35
|
- lib/assets/javascripts/transponder/error.coffee
|
35
36
|
- lib/assets/javascripts/transponder/init.coffee
|
36
37
|
- lib/assets/javascripts/transponder/presenter.coffee
|
37
38
|
- lib/assets/javascripts/transponder/request.coffee
|
38
39
|
- lib/assets/javascripts/transponder/service.coffee
|
39
40
|
- lib/assets/javascripts/transponder/setup.coffee
|
40
|
-
- lib/
|
41
|
+
- lib/generators/transponder.rb
|
42
|
+
- lib/generators/transponder/install/USAGE
|
41
43
|
- lib/generators/transponder/install/install_generator.rb
|
44
|
+
- lib/generators/transponder/install/templates/helpers/.keep
|
42
45
|
- lib/generators/transponder/install/templates/initializers/manifest.coffee
|
43
46
|
- lib/generators/transponder/install/templates/initializers/setup.coffee
|
44
|
-
- lib/generators/transponder/install/
|
47
|
+
- lib/generators/transponder/install/templates/presenters/.keep
|
48
|
+
- lib/generators/transponder/install/templates/services/.keep
|
45
49
|
- lib/generators/transponder/resource_helpers.rb
|
46
|
-
- lib/generators/transponder.rb
|
47
|
-
- lib/transponder/version.rb
|
48
50
|
- lib/transponder.rb
|
49
|
-
-
|
50
|
-
- LICENSE.txt
|
51
|
-
- Rakefile
|
51
|
+
- lib/transponder/version.rb
|
52
52
|
- README.md
|
53
53
|
- test/javascripts/runner/config.rb
|
54
54
|
- test/javascripts/runner/Gemfile
|
data/Gemfile
DELETED
data/LICENSE.txt
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
Copyright (c) 2013 Zack Siri
|
2
|
-
|
3
|
-
MIT License
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
-
a copy of this software and associated documentation files (the
|
7
|
-
"Software"), to deal in the Software without restriction, including
|
8
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
-
permit persons to whom the Software is furnished to do so, subject to
|
11
|
-
the following conditions:
|
12
|
-
|
13
|
-
The above copyright notice and this permission notice shall be
|
14
|
-
included in all copies or substantial portions of the Software.
|
15
|
-
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/Rakefile
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
require "bundler/gem_tasks"
|